Skip to content

Commit

Permalink
chore: Stop suppressing pod install failures
Browse files Browse the repository at this point in the history
Pod install failures were suppressed originally to make cross-platform
development easier, as they would fail on Windows and Linux (where you
would presumably be developing with Android which does not require this
step). However, since the introduction of the new setup script, this
step will not run on non-macOS machines by default so this error
suppression is no longer needed.

This will make install errors easier to discover, saving developer
time.
  • Loading branch information
Gudahtt committed Nov 28, 2024
1 parent e7ee604 commit eecd3d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"watch": "./scripts/build.sh watcher watch",
"watch:clean": "./scripts/build.sh watcher clean",
"clean:ios": "rm -rf ios/build",
"pod:install": "command -v pod && bundle exec pod install --project-directory=ios || echo \"pod command not found. Skipping pod install\"",
"pod:install": "bundle exec pod install --project-directory=ios",
"gem:bundle:install": "bundle install --gemfile=ios/Gemfile",
"clean:ppom": "rm -rf ppom/dist ppom/node_modules app/lib/ppom/ppom.html.js",
"clean:android": "rm -rf android/app/build",
Expand Down

0 comments on commit eecd3d3

Please sign in to comment.