Update Go dependencies
parent
b43829fd94
commit
70b4c122cd
@ -0,0 +1,15 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# shellcheck disable=SC1090
|
||||||
|
source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh"
|
||||||
|
|
||||||
|
APP=staticcheck
|
||||||
|
VERSION=${VERSION:-0.3.3}
|
||||||
|
DEST=${XDG_DATA_HOME}/apps/releases/${APP}
|
||||||
|
URL=https://github.com/dominikh/go-tools/releases/download/v${VERSION}/staticcheck_$(get_os)_$(get_arch).tar.gz
|
||||||
|
|
||||||
|
extract_tarball "${URL}" "${DEST}/${VERSION}" "--strip-components 1"
|
||||||
|
set_current_link "${DEST}" "${VERSION}"
|
||||||
|
set_link "${XDG_BIN_HOME}/${APP}" "${DEST}" "${APP}"
|
Loading…
Reference in New Issue