From 0259864c151446ed2de6f6a7d9f48f2b3b5df0d0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 7 Oct 2014 16:48:31 +0200 Subject: Call python3 explicitly from tgz util --- build_files/utils/build_tgz.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build_files') 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" -- cgit v1.2.3