Merge pull request #63 from jcgruenhage/patch-1

remove sudo from makefile
This commit is contained in:
Alexander Neumann
2018-03-30 11:46:27 +02:00
committed by GitHub

View File

@@ -15,10 +15,10 @@ rest-server:
@go run build.go
install: rest-server
sudo /usr/bin/install -m 755 rest-server /usr/local/bin/rest-server
/usr/bin/install -m 755 rest-server /usr/local/bin/rest-server
uninstall:
sudo rm -f /usr/local/bin/rest-server
rm -f /usr/local/bin/rest-server
docker_build:
docker pull golang:alpine