diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Troubleshooting.md | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/Troubleshooting.md b/docs/Troubleshooting.md index 7def4c0d..5c4b42f1 100644 --- a/docs/Troubleshooting.md +++ b/docs/Troubleshooting.md @@ -26,19 +26,19 @@ As [documented here](https://stackoverflow.com/questions/42554337/cannot-launch- **Fixes:** -You have a couple options. The second is more robust: +You have a couple options. The fist is more robust: -1. Always run emulator from within its own directory (clunky!): +1. Insert a line in your `~/.bashrc` to automatically navigate to the correct directory (and back) whenever you invoke `emulator`: -``` shell - cd "$(dirname "$(which emulator)")" - emulator <name_of_your_emulator> + ```shell +function emulator { pushd `pwd`; cd "$(dirname "$(which emulator)")" && ./emulator "$@"; popd;} ``` -2. Insert a line in your `~/.bashrc` to automatically navigate to the correct directory (and back) whenever you invoke `emulator`: +2. Always run emulator from within its own directory (clunky!): - ```shell -function emulator { pushd `pwd`; cd "$(dirname "$(which emulator)")" && ./emulator "$@"; popd;} +``` shell + cd "$(dirname "$(which emulator)")" + emulator <name_of_your_emulator> ``` #### 3. Outdated GL Libraries <a name="outdated-gl-libraries"></a> @@ -91,7 +91,7 @@ This means never using the desktop launcher. :( ## Updating Submodules <a name="updating-submodules"></a> -If you need to refresh of our upstream dependency on ics-openvpn, you may do so with: +If you need to refresh our upstream dependency on ics-openvpn, you may do so with: ``` shell cd <path/to/bitmask_android> |