Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔧 Use Go Modules rather than dep
Browse files Browse the repository at this point in the history
jamieconnolly committed Aug 27, 2018
1 parent 3470650 commit 2806f28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libexec/handles-bootstrap
Original file line number Diff line number Diff line change
@@ -22,14 +22,14 @@ if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then
brew bundle check &>/dev/null || brew bundle install
fi

if [ -f "Gopkg.toml" ]; then
if [ -f "go.mod" ]; then
if ! goenv version-name &>/dev/null; then
echo "==> Installing Go…"
goenv install --skip-existing
fi

echo "==> Installing Go dependencies…"
dep ensure
go get
fi

if [ -f "package.json" ]; then

0 comments on commit 2806f28

Please sign in to comment.