From 2b2b08431e60f5584cfa9dece12af2995290bb0d Mon Sep 17 00:00:00 2001 From: josteph Date: Thu, 14 Jun 2018 14:03:22 +0000 Subject: [PATCH] Revert "Excluded data/test/ from tarball" This reverts commit c93482560779c0e137d9598b9e7185338afe2b82. Keep data/test/ in 'scons dist' tarballs to match official tarballs. (cherry-picked from commit bad6897cbc75225624814b66c9226cf6233e95cf) --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 1f520c4684d..90ec5cbb4b9 100755 --- a/SConstruct +++ b/SConstruct @@ -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', [])