Revert "Excluded data/test/ from tarball"

This reverts commit c934825607.

Keep data/test/ in 'scons dist' tarballs to match official tarballs.
This commit is contained in:
josteph 2018-06-14 14:03:22 +00:00 committed by Jyrki Vesterinen
parent 0ee4854157
commit bad6897cbc

View file

@ -775,7 +775,7 @@ if 'dist' in COMMAND_LINE_TARGETS: # Speedup, the manifest is expensive
def dist_manifest():
"Get an argument list suitable for passing to a distribution archiver."
# Start by getting a list of all files under version control
lst = subprocess.check_output("git ls-files | grep -v 'data\/test\/.*'", shell=True).splitlines()
lst = subprocess.check_output("git ls-files", shell=True).splitlines()
lst = filter(os.path.isfile, lst)
return lst
dist_tarball = env.Tar('wesnoth-${version}.tar.bz2', [])