Skip to content

Commit

Permalink
Update readme to resolve error
Browse files Browse the repository at this point in the history
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
tpmccallum authored Aug 21, 2019
1 parent 4a3bade commit 4911508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ On Linux or Mac, this can be accomplished by the following or similar.
For __a fresh install__, the below. This will set [multi-geth/multi-geth](https://github.com/multi-geth/multi-geth) as as the `git` remote `origin` by default.

```sh
$ env path=$GOPATH/src/github.com/ethereum mkdir -p $path && cd $path
$ path=$GOPATH/src/github.com/ethereum && mkdir -p $path && cd $path
$ git clone https://github.com/multi-geth/multi-geth.git go-ethereum && cd go-ethereum
```

Expand Down

0 comments on commit 4911508

Please sign in to comment.