Skip to content

Commit

Permalink
Merge branch '2391-fix-mint-race-condition' into 'develop'
Browse files Browse the repository at this point in the history
Merge-Request: apple/vpn/protonvpn!2029
Approved-by: John Biggs <[email protected]>
Approved-by: Pawel Jurczyk <[email protected]>
  • Loading branch information
protonjohn committed Oct 15, 2024
2 parents c14466a + 4c15f17 commit 730a363
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Integration/Scripts/pipeline_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,10 @@ rm -f "${MACROS_ALLOWLIST_INSTALL_DIR}/$(basename $MACROS_ALLOWLIST_PATH)" || tr
mkdir -p "$MACROS_ALLOWLIST_INSTALL_DIR" || true
cp "$MACROS_ALLOWLIST_PATH" "${MACROS_ALLOWLIST_INSTALL_DIR}/$(basename $MACROS_ALLOWLIST_PATH)"

# Check if 'mint bootstrap' is already running
while pgrep -f "mint bootstrap" > /dev/null; do
echo "Another instance of 'mint bootstrap' is running. Waiting..."
sleep 5
done

mint bootstrap --link --overwrite=y

0 comments on commit 730a363

Please sign in to comment.