Skip to content

Commit

Permalink
Fix script permissions error
Browse files Browse the repository at this point in the history
  • Loading branch information
jordancoult committed Oct 20, 2024
1 parent 8bd4445 commit 31d001f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions steps/04-install-extras.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ case "$OS" in

android)
# User moder dependency installer
REPO="https://chromium.googlesource.com/chromium/src/build.git/+/6f78132b7587bc8532006c2f233aaf0a1a5818c3"
curl "$REPO/install-build-deps.sh?format=TEXT" | base64 --decode > build/install-build-deps.sh
curl "$REPO/install-build-deps.py?format=TEXT" | base64 --decode > build/install-build-deps.py

COMMIT=6f78132b7587bc8532006c2f233aaf0a1a5818c3
REPO="https://chromium.googlesource.com/chromium/src/build.git/+"
curl "$REPO/$COMMIT/install-build-deps.sh?format=TEXT" | base64 --decode > build/install-build-deps.sh && chmod +x build/install-build-deps.sh
curl "$REPO/$COMMIT/install-build-deps.py?format=TEXT" | base64 --decode > build/install-build-deps.py && chmod +x build/install-build-deps.py

build/install-build-deps.sh --android
gclient runhooks
;;
Expand Down

0 comments on commit 31d001f

Please sign in to comment.