From 3e2d959817b3d4f7a85a4dea9ce646507ff2b095 Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Sat, 22 Aug 2020 01:17:43 -0700 Subject: [PATCH] build: fix electron_mksnapshot_zip_done check --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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