Revert "Excluded data/test/ from tarball"
This reverts commitc934825607
. Keep data/test/ in 'scons dist' tarballs to match official tarballs. (cherry-picked from commitbad6897cbc
)
This commit is contained in:
parent
0b633badc5
commit
2b2b08431e
1 changed files with 1 additions and 1 deletions
|
@ -776,7 +776,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', [])
|
||||
|
|
Loading…
Add table
Reference in a new issue