summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2022-05-13 17:07:50 +0200
committercyBerta <cyberta@riseup.net>2022-05-13 17:07:50 +0200
commitca35ccbf2c862d8ba93a2ee1d4a8130f8b1233a5 (patch)
treeecfe7ec70ead99d3efee959a968419d8f9557830 /docs
parentc907330149da2ab5c014d959ab2c697d42101119 (diff)
some changes in Troubleshooting.md after review
Diffstat (limited to 'docs')
-rw-r--r--docs/Troubleshooting.md18
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>