Skip to content

Commit

Permalink
Revert "Excluded data/test/ from tarball"
Browse files Browse the repository at this point in the history
This reverts commit c934825.

Keep data/test/ in 'scons dist' tarballs to match official tarballs.

(cherry-picked from commit bad6897)
  • Loading branch information
jostephd authored and jyrkive committed Oct 7, 2018
1 parent 0b633ba commit 2b2b084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Expand Up @@ -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', [])
Expand Down

0 comments on commit 2b2b084

Please sign in to comment.