Skip to content

Commit ecc952c

Browse files
committed
Force python2 for auth test generator
1 parent 3169134 commit ecc952c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/auth/buildtools/generate_test_files.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ cd "$(dirname $(dirname "$0"))"
2525
mkdir -p generated
2626

2727
echo "Generating dependency file..."
28-
python ../../node_modules/google-closure-library/closure/bin/build/depswriter.py \
28+
python2 ../../node_modules/google-closure-library/closure/bin/build/depswriter.py \
2929
--root_with_prefix="test ../../../../test" \
3030
--root_with_prefix="src ../../../../src" \
3131
> generated/deps.js
3232

3333
echo "Generating test HTML files..."
34-
python ./buildtools/gen_test_html.py
35-
python ./buildtools/gen_all_tests_js.py > generated/all_tests.js
34+
python2 ./buildtools/gen_test_html.py
35+
python2 ./buildtools/gen_all_tests_js.py > generated/all_tests.js
3636

3737
echo "Done."

0 commit comments

Comments
 (0)