Skip to content

Commit

Permalink
skip install on prebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
yousif-bugsnag committed Feb 1, 2024
1 parent 9b9ed33 commit 73114a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion features/fixtures/test-app/eas.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"production": {
"distribution": "internal",
"credentialsSource": "local",
"prebuildCommand": "prebuild --npm",
"prebuildCommand": "prebuild --no-install",
"android": {
"buildType": "apk"
},
Expand Down
8 changes: 4 additions & 4 deletions features/scripts/build-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ node -v
echo 'eas-cli version:'
eas -v

echo 'expo cli version:'
npx expo -v

# Install expo requirements
npm install

Expand Down Expand Up @@ -46,10 +43,13 @@ npm install

cp $EXPO_UNIVERSAL_CREDENTIALS_DIR/* .

echo 'expo cli version:'
npx expo -v

echo 'current directory contents:'
ls -la

# run prebuild using npm
npx expo prebuild --clean --npm
npx expo prebuild --no-install

echo "Common setup complete"

0 comments on commit 73114a2

Please sign in to comment.