[Bf-blender-cvs] [fde9dbc] blender-v2.72-release: Fix for tgz script (whitespace broke it)

Campbell Barton noreply at git.blender.org
Wed Oct 15 13:07:37 CEST 2014


Commit: fde9dbcd1eacad0ab9d24a1d39ef73c58c849914
Author: Campbell Barton
Date:   Fri Oct 3 19:41:46 2014 +0200
Branches: blender-v2.72-release
https://developer.blender.org/rBfde9dbcd1eacad0ab9d24a1d39ef73c58c849914

Fix for tgz script (whitespace broke it)

===================================================================

M	build_files/utils/build_tgz.sh

===================================================================

diff --git a/build_files/utils/build_tgz.sh b/build_files/utils/build_tgz.sh
index b0ff8ea..944bc52 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




More information about the Bf-blender-cvs mailing list