Skip to content

Commit

Permalink
fix dir and mac build (#32)
Browse files Browse the repository at this point in the history
* remove extra mkdir command
* make sha check work on mac
  • Loading branch information
if-kyle authored and Jonne Nauha committed Jul 10, 2018
1 parent 27879c3 commit 7c2b385
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ To aggregate all loaded VCLs into per-backend metric the following Prometheus [r
**Development**
```bash
# clone
mkdir mkdir -p $GOPATH/src/github.com/jonnenauha
mkdir -p $GOPATH/src/github.com/jonnenauha
cd $GOPATH/src/github.com/jonnenauha
git clone [email protected]:jonnenauha/prometheus_varnish_exporter.git
cd prometheus_varnish_exporter
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ for goos in linux darwin windows freebsd openbsd netbsd ; do
done

cd ./bin/release
sha256sum --binary ./* | sed -En "s/\*\.\/(.*)$/\1/p" > sha256sums.txt
shasum --algorithm 256 --binary ./* | sed -En "s/\*\.\/(.*)$/\1/p" > sha256sums.txt
cd ../..

0 comments on commit 7c2b385

Please sign in to comment.