Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ def copy_artifacts():
execute("cp ./_spidermonkey_install/lib/libmozjs* ./python/pythonmonkey/", cwd=TOP_DIR)

def build():
execute("git submodule update --init --recursive", cwd=TOP_DIR)
ensure_spidermonkey()
run_cmake_build()
copy_artifacts()
Expand Down
6 changes: 5 additions & 1 deletion tests/js/commonjs-modules.bash
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ panic()
echo "$*" >&2
exit 2
}
cd `dirname "$0"`/../commonjs-official/tests/modules/1.0 || panic "could not change to test directory"

cd `dirname "$0"`
git submodule update --init --recursive || panic "could not checkout the required git submodule"

cd ../commonjs-official/tests/modules/1.0 || panic "could not change to test directory"

runTest()
{
Expand Down