From 49115082e94ffad78385a8d5f7b45f6c53cb650a Mon Sep 17 00:00:00 2001 From: Timothy McCallum Date: Thu, 22 Aug 2019 09:35:19 +1000 Subject: [PATCH] Update readme to resolve error 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 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7bdb931697dc..a1000b58acde 100644 --- a/README.md +++ b/README.md @@ -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 ```