File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ def copy_artifacts():
5252 execute ("cp ./_spidermonkey_install/lib/libmozjs* ./python/pythonmonkey/" , cwd = TOP_DIR )
5353
5454def build ():
55- execute ("git submodule update --init --recursive" , cwd = TOP_DIR )
5655 ensure_spidermonkey ()
5756 run_cmake_build ()
5857 copy_artifacts ()
Original file line number Diff line number Diff line change @@ -11,7 +11,11 @@ panic()
1111 echo " $* " >&2
1212 exit 2
1313}
14- cd ` dirname " $0 " ` /../commonjs-official/tests/modules/1.0 || panic " could not change to test directory"
14+
15+ cd ` dirname " $0 " `
16+ git submodule update --init --recursive || panic " could not checkout the required git submodule"
17+
18+ cd ../commonjs-official/tests/modules/1.0 || panic " could not change to test directory"
1519
1620runTest ()
1721{
You can’t perform that action at this time.
0 commit comments