ensure-go-installed is meant to be sourced, not executed

Rename it and make it non-executable to prevent confusion.
This commit is contained in:
Michael Haggerty 2017-11-25 08:02:31 +01:00
Родитель 11c213f714
Коммит e233874f69
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -10,7 +10,7 @@ export GOPATH="$ROOTDIR/.gopath"
if [[ "$(uname -s)" = "Darwin" ]]; then
brew bundle
fi
script/ensure-go-installed
. script/ensure-go-installed.sh
go get -u github.com/golang/dep/cmd/dep

Просмотреть файл

@ -1,4 +1,4 @@
#!/bin/bash
# This file is meant to be sourced.
ROOTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"

Просмотреть файл

@ -3,7 +3,7 @@
set -e
export ROOTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
. $ROOTDIR/script/ensure-go-installed
. $ROOTDIR/script/ensure-go-installed.sh
export GOPATH=$ROOTDIR/.gopath
exec "$(basename $0)" "$@"