diff --git a/README.md b/README.md index a6ade27..3c12b09 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,14 @@ We're working on making it so that they don't have to be in those directories. ## Installing * git clone this directory -* cd into the directory -* set the GOPATH environment variable to the directory +* If you didn't clone into your GOPATH, symlink the clone directory into + $GOPATH/src ### ps -* $ go install "jsh/ps" -* $ bin/ps +* $ go install jsh/ps +* $ $GOPATH/bin/ps + +You may want to prepend your path with $GOPATH/bin: + + export PATH=$GOPATH/bin:$PATH diff --git a/src/jsh/common.go b/common.go similarity index 100% rename from src/jsh/common.go rename to common.go diff --git a/src/jsh/process.go b/process.go similarity index 100% rename from src/jsh/process.go rename to process.go diff --git a/src/jsh/ps/main.go b/ps/main.go similarity index 100% rename from src/jsh/ps/main.go rename to ps/main.go