diff --git a/.circleci/config.yml b/.circleci/config.yml index a89781c07202..4e5c5f733da8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -779,7 +779,7 @@ step-mksnapshot-build: &step-mksnapshot-build name: mksnapshot build command: | cd src - if [ ! -s "src/out/Default/.electron_mksnapshot_zip_done" ]; then + if [ ! -s "out/Default/.electron_mksnapshot_zip_done" ]; then ninja -C out/Default electron:electron_mksnapshot -j $NUMBER_OF_NINJA_PROCESSES gn desc out/Default v8:run_mksnapshot_default args > out/Default/mksnapshot_args fi @@ -795,7 +795,7 @@ step-mksnapshot-build: &step-mksnapshot-build electron/script/strip-binaries.py --file $PWD/out/Default/v8_context_snapshot_generator fi fi - if [ ! -s "src/out/Default/.electron_mksnapshot_zip_done" ] && [ "$SKIP_DIST_ZIP" != "1" ]; then + if [ ! -s "out/Default/.electron_mksnapshot_zip_done" ] && [ "$SKIP_DIST_ZIP" != "1" ]; then ninja -C out/Default electron:electron_mksnapshot_zip -j $NUMBER_OF_NINJA_PROCESSES (cd out/Default; zip mksnapshot.zip mksnapshot_args gen/v8/embedded.S) fi