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-07 18:48:31 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-10-15 15:06:09 +0400
commit14879fb2b82aaea33f5e3aeb3d9f834500f669b0 (patch)
treeb15379493b01e5ee67aab51a909b76a637f45383
parent70eea8fcc8090eb5589b4d652020691bb0b3cac6 (diff)
Call python3 explicitly from tgz util
-rwxr-xr-xbuild_files/utils/build_tgz.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/utils/build_tgz.sh b/build_files/utils/build_tgz.sh
index 9ffa72b8d61..409c738e9f8 100755
--- a/build_files/utils/build_tgz.sh
+++ b/build_files/utils/build_tgz.sh
@@ -27,13 +27,13 @@ FILTER_FILES_PY="import os, sys; [print(l[:-1]) for l in sys.stdin.readlines() i
# Build master list
echo -n "Building manifest of files: \"$BASE_DIR/$MANIFEST\" ..."
-git ls-files | python -c "$FILTER_FILES_PY" > $BASE_DIR/$MANIFEST
+git ls-files | python3 -c "$FILTER_FILES_PY" > $BASE_DIR/$MANIFEST
# Enumerate submodules
for lcv in $(git submodule | awk '{print $2}'); do
cd "$BASE_DIR"
cd "$blender_srcdir/$lcv"
- git ls-files | python -c "$FILTER_FILES_PY" | awk '$0="'"$lcv"/'"$0' >> $BASE_DIR/$MANIFEST
+ git ls-files | python3 -c "$FILTER_FILES_PY" | awk '$0="'"$lcv"/'"$0' >> $BASE_DIR/$MANIFEST
cd "$BASE_DIR"
done
echo "OK"