Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-10-03 21:41:46 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-10-03 21:41:46 +0400
commit821e2ae37a5e035d78a72b5ebff7204975877a38 (patch)
tree60f9521f53eb6bd6240a3189675cd9ff5e6241c7
parentf0b601ccf35d767a6fe560b196a0a4802fc3fcef (diff)
Fix for tgz script (whitespace broke it)
-rwxr-xr-xbuild_files/utils/build_tgz.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/utils/build_tgz.sh b/build_files/utils/build_tgz.sh
index b0ff8ea2aa8..944bc528a37 100755
--- a/build_files/utils/build_tgz.sh
+++ b/build_files/utils/build_tgz.sh
@@ -27,7 +27,7 @@ echo -n "Building manifest of files: \"$BASE_DIR/$MANIFEST\" ..."
git ls-files > $BASE_DIR/$MANIFEST
# Enumerate submodules
-for lcv in $(git submodule | cut -f2 -d" "); do
+for lcv in $(git submodule | awk '{print $2}'); do
cd "$BASE_DIR"
cd "$blender_srcdir/$lcv"
git ls-files | awk '$0="'"$lcv"/'"$0' >> $BASE_DIR/$MANIFEST