Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

include more debugging hints #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ Troubleshooting
- Another workaround is to delete the local environment and recreate it
- javascript errors: `rm -rf node_modules && npm install`
- native code compile errors: `rm -rf plugins && rm -rf platforms && npx cordova prepare`
- If you are preparing the setup from your own fork, make sure to remove the `upstream`.
- `git remote rm upstream`
- You may notice that `set -e` was included in the setup scripts. It will stop the setup process when the script runs into an issue. Note that not all issues are real "problems": currently, it will also stop if you already installed Gradle 4.1 or try to re-run the script because of a previous error.
- You could try removing the `set -e` temporarily.
- You could try running the setup script step by step to see what fails.
- See [here](https://github.com/e-mission/e-mission-docs/issues/501#issuecomment-616391522) for an example.

Beta-testing debugging
---
Expand Down