Skip to content

Commit

Permalink
fix: more ARM compatibility stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
mike325 committed May 22, 2024
1 parent 09ff8b3 commit 570314e
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ NOCOLOR=0
NOLOG=0
PYTHON=0
PKGS=0
TMP="/tmp/"
TMP="${TMPDIR:-/tmp/}"
PKG_FILE=""
NEOVIM_DOTFILES=0

Expand Down Expand Up @@ -575,8 +575,8 @@ function download_asset() {
verbose_msg "Backing up $dest into $BACKUP_DIR"
mv --backup=numbered "$dest" "$BACKUP_DIR"
fi
elif [[ $FORCE_INSTALL -eq 1 ]]; then
verbose_msg "Removing $dest"
elif [[ $FORCE_INSTALL -eq 1 ]] && [[ -f "$dest" ]]; then
verbose_msg "Removing $dest before re-download"
rm -rf "$dest"
elif [[ -e $dest ]] || [[ -d $dest ]]; then
warn_msg "Skipping $asset, already exists in ${dest%/*}"
Expand Down Expand Up @@ -1340,7 +1340,7 @@ function _linux_portables() {
if ! hash rg 2>/dev/null || [[ $FORCE_INSTALL -eq 1 ]]; then
[[ $FORCE_INSTALL -eq 1 ]] && status_msg 'Forcing rg install'
status_msg "Getting rg"
local pkg='rg.tar.xz'
local pkg='rg.tar.gz'
local url="${github}/BurntSushi/ripgrep"
if hash curl 2>/dev/null; then
# shellcheck disable=SC2155
Expand All @@ -1351,7 +1351,11 @@ function _linux_portables() {
fi

status_msg "Downloading rg version: ${version}"
local os_type="${ARCH}-unknown-linux-gnu"
if is_arm; then
local os_type="${ARCH}-unknown-linux-gnu"
else
local os_type="${ARCH}-unknown-linux-musl"
fi
if download_asset "Ripgrep" "${url}/releases/download/${version}/ripgrep-${version}-${os_type}.tar.gz" "$TMP/${pkg}"; then
pushd "$TMP" 1>/dev/null || return 1
verbose_msg "Extracting into $TMP/${pkg}"
Expand Down Expand Up @@ -1380,7 +1384,7 @@ function _linux_portables() {
if ! hash fd 2>/dev/null || [[ $FORCE_INSTALL -eq 1 ]]; then
[[ $FORCE_INSTALL -eq 1 ]] && status_msg 'Forcing fd install'
status_msg "Getting fd"
local pkg='fd.tar.xz'
local pkg='fd.tar.gz'
local url="${github}/sharkdp/fd"
if hash curl 2>/dev/null; then
# shellcheck disable=SC2155
Expand All @@ -1391,7 +1395,7 @@ function _linux_portables() {
fi
status_msg "Downloading fd version: ${version}"
local os_type="${ARCH}-unknown-linux-gnu"
if download_asset "Fd" "${url}/releases/download/${version}/fd-${version}-${os_type}.tar.gz" "$TMP/${pkg}"; then
if download_asset "fd" "${url}/releases/download/${version}/fd-${version}-${os_type}.tar.gz" "$TMP/${pkg}"; then
pushd "$TMP" 1>/dev/null || return 1
verbose_msg "Extracting into $TMP/${pkg}"
if tar xf "$TMP/${pkg}"; then
Expand Down

0 comments on commit 570314e

Please sign in to comment.