summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Sadetsky <lepetitg@gmail.com>2022-05-24 10:54:05 -0400
committerThomas Buckley-Houston <tom@tombh.co.uk>2022-05-24 12:38:14 -0300
commit64c68a916c0f83ab1bf090ad2c9e60a73ca618d2 (patch)
tree62dc474e79f4cc18104c41bbe6a313d240ff7837
parent540882ec8c9e40414de54d6c43f72f861c4e89d9 (diff)
Fix Mac Build Environment Documentation
-rw-r--r--contrib/setup_mac_build_environment.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/setup_mac_build_environment.md b/contrib/setup_mac_build_environment.md
index d17ed2b..d6d36f6 100644
--- a/contrib/setup_mac_build_environment.md
+++ b/contrib/setup_mac_build_environment.md
@@ -76,7 +76,7 @@ $ npx webpack --watch
```sh
$ # the dist folder is created in the first terminal
-$ cd "$GOPATH/browsh/webext/dist"
+$ cd "$GOPATH/src/browsh/webext/dist"
$ # create a dist folder inside the webext folder.
$ npx webpack --watch
```
@@ -84,7 +84,7 @@ $ npx webpack --watch
### Terminal 3 (Displays Browsh)
```sh
-$ cd "$GOPATH/browsh"
-$ go run ./interfacer/src/main.go --firefox.use-existing --debug
+$ cd "$GOPATH/src/browsh/interfacer"
+$ go run ./cmd/browsh/main.go --firefox.use-existing --debug
```