-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Stavros Foteinopoulos <[email protected]>
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. | ||
# See LICENSE.txt for license information. | ||
|
||
set -o errexit | ||
set -o nounset | ||
set -o pipefail | ||
|
||
if [ -z "${1}" ]; then | ||
echo "must provide module as first parameter" | ||
exit 1 | ||
fi | ||
|
||
if [ -z "${2}" ]; then | ||
echo "must provide binary name as second parameter" | ||
exit 1 | ||
fi | ||
|
||
if [ -z "${3}" ]; then | ||
echo "must provide version as third parameter" | ||
exit 1 | ||
fi | ||
|
||
if [ -z "${GOBIN}" ]; then | ||
echo "GOBIN is not set. Must set GOBIN to install the bin in a specified directory." | ||
exit 1 | ||
fi | ||
|
||
tmp_dir=$(mktemp -d -t goinstall_XXXXXXXXXX) | ||
function clean { | ||
rm -rf "${tmp_dir}" | ||
} | ||
trap clean EXIT | ||
|
||
rm "${GOBIN}/${2}"* || true | ||
|
||
cd "${tmp_dir}" | ||
|
||
# create a new module in the tmp directory | ||
go mod init fake/mod | ||
|
||
# install the golang module specified as the first argument | ||
go install -tags tools "${1}@${3}" | ||
mv "${GOBIN}/${2}" "${GOBIN}/${2}-${3}" | ||
ln -sf "${GOBIN}/${2}-${3}" "${GOBIN}/${2}" |