Skip to content
Snippets Groups Projects
Commit 40367195 authored by Pierre Guilleminot's avatar Pierre Guilleminot
Browse files

Remove -x arg in go get

parent 3c03523f
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ do_start() { ...@@ -60,7 +60,7 @@ do_start() {
exit 1 exit 1
fi fi
printf "installing http server (caddy)... " printf "installing http server (caddy)... "
go get -x -u "github.com/mholt/caddy/caddy" go get "github.com/mholt/caddy/caddy"
echo "ok" echo "ok"
fi fi
...@@ -73,7 +73,7 @@ do_start() { ...@@ -73,7 +73,7 @@ do_start() {
COZY_STACK_PATH="${GOPATH}/bin/cozy-stack" COZY_STACK_PATH="${GOPATH}/bin/cozy-stack"
if [ ! -f "${COZY_STACK_PATH}" ]; then if [ ! -f "${COZY_STACK_PATH}" ]; then
printf "installing cozy-stack... " printf "installing cozy-stack... "
go get -x -u "github.com/cozy/cozy-stack" go get "github.com/cozy/cozy-stack"
echo "ok" echo "ok"
fi fi
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment