Always use python3 to run fetch-sk.

fetch-sk is no longer Python 2 compatible, and not all machines default
to Python3 (the Mac terminal still defaults to 2.7).

Change-Id: I6244ee591bbe787ef2dba46da2b20446265e42b8
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/443406
Auto-Submit: John Stiles <johnstiles@google.com>
Commit-Queue: Ravi Mistry <rmistry@google.com>
Reviewed-by: Ravi Mistry <rmistry@google.com>
This commit is contained in:
John Stiles 2021-08-30 15:00:55 -04:00 committed by SkCQ
parent 6f20b8d5f7
commit fd3a6d9235

View File

@ -8,7 +8,7 @@ set -x
set -e
ROOT_DIR="$(cd $(dirname $0)/..; pwd)"
python ${ROOT_DIR}/bin/fetch-sk
python3 ${ROOT_DIR}/bin/fetch-sk
case "$(uname -s)" in
CYGWIN*) SK_EXE="sk.exe";;
MINGW*) SK_EXE="sk.exe";;