Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Was getting ```mkdir: missing operand Try 'mkdir --help' for more information. ``` when using the original command of ``` env path=$GOPATH/src/github.com/ethereum mkdir -p $path && cd $path ``` Updated this command to ``` path=$GOPATH/src/github.com/ethereum && mkdir -p $path && cd $path ``` Success
- Loading branch information