Skip to content

Commit

Permalink
fix: switch to printf
Browse files Browse the repository at this point in the history
  • Loading branch information
zant committed Jan 8, 2025
1 parent b7eb509 commit 79d2242
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .sh/eas-build-publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ fi
rm .env.development && mv .env.production .env

# add rollbar
echo \n >> .env
echo EXPO_PUBLIC_CLIENT_ITEM_ACCESS_TOKEN=$EXPO_PUBLIC_CLIENT_ITEM_ACCESS_TOKEN >> .env
echo "EXPO_PUBLIC_CLIENT_ITEM_ACCESS_TOKEN=$EXPO_PUBLIC_CLIENT_ITEM_ACCESS_TOKEN\n" >> .env

yarn install
eas build --platform android --profile $BUILD_PROFILE --non-interactive
3 changes: 1 addition & 2 deletions .sh/update-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
rm .env.production && mv .env.development .env

# add rollbar
echo \n >> .env
echo EXPO_PUBLIC_CLIENT_ITEM_ACCESS_TOKEN=$EXPO_PUBLIC_CLIENT_ITEM_ACCESS_TOKEN >> .env
printf "EXPO_PUBLIC_CLIENT_ITEM_ACCESS_TOKEN=$EXPO_PUBLIC_CLIENT_ITEM_ACCESS_TOKEN\n" >> .env

yarn install
eas build --platform android --profile development --non-interactive

0 comments on commit 79d2242

Please sign in to comment.