Update fzf script
parent
79994293d0
commit
8e73c4c778
@ -1,38 +1,12 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
APP=fzf
|
source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh"
|
||||||
VERSION=${VERSION:-0.24.4}
|
|
||||||
DATA_DIR="${XDG_DATA_HOME}/apps/releases"
|
|
||||||
DEST_DIR="${DATA_DIR}/${APP}/${VERSION}"
|
|
||||||
|
|
||||||
OS=
|
|
||||||
ARCH=
|
|
||||||
case $(uname -s) in
|
|
||||||
Linux*) OS=linux;;
|
|
||||||
Darwin*) OS=darwin;;
|
|
||||||
*) >&2 echo "unsupported os"; return;
|
|
||||||
esac
|
|
||||||
|
|
||||||
case $(uname -m) in
|
|
||||||
x86_64*) ARCH=amd64;;
|
|
||||||
*) >&2 echo "unsupported architecture: $(uname -m)"; exit 1;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
URL="https://github.com/junegunn/fzf/releases/download/${VERSION}/fzf-${VERSION}-${OS}_${ARCH}.tar.gz"
|
APP=fzf
|
||||||
|
VERSION=${VERSION:-0.27.2}
|
||||||
TMP_DIR=
|
DEST="${XDG_DATA_HOME}/apps/releases/${APP}"
|
||||||
if [[ ! -d "${DEST_DIR}" ]] ; then
|
URL=https://github.com/junegunn/fzf/releases/download/${VERSION}/fzf-${VERSION}-$(get_os)_$(get_arch).tar.gz
|
||||||
TMP_DIR=$(mktemp --directory)
|
|
||||||
TAR_GZ="${TMP_DIR}/release.tar.gz"
|
|
||||||
curl --location --silent --output "${TAR_GZ}" "${URL}"
|
|
||||||
mkdir -p "${DEST_DIR}"
|
|
||||||
tar xzf "${TAR_GZ}" --directory "${DEST_DIR}"
|
|
||||||
rm -rf "${TMP_DIR}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd "${DATA_DIR}/${APP}" || exit
|
|
||||||
[[ -s current ]] && unlink current
|
|
||||||
ln -s "${VERSION}" current
|
|
||||||
|
|
||||||
cd "${XDG_BIN_HOME}" || exit
|
extract_tarball "${URL}" "${DEST}/${VERSION}"
|
||||||
[[ -L "${APP}" ]] || ln --symbolic "${DATA_DIR}/${APP}/current/${APP}" ${APP}
|
set_current_link "${DEST}" "${VERSION}"
|
||||||
|
set_link "${XDG_BIN_HOME}/${APP}" "${DEST}" "${APP}"
|
||||||
|
Loading…
Reference in New Issue