From 6df3a4a2dad223732ee8ada0e5791d0c41a7c114 Mon Sep 17 00:00:00 2001 From: Buddy Date: Mon, 14 Sep 2026 09:32:21 -0700 Subject: [PATCH] fix: remove verbose logging in install ripgrep --- dot_local/bin/executable_install-ripgrep | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dot_local/bin/executable_install-ripgrep b/dot_local/bin/executable_install-ripgrep index 219d859..9e1fe49 100755 --- a/dot_local/bin/executable_install-ripgrep +++ b/dot_local/bin/executable_install-ripgrep @@ -10,17 +10,13 @@ main () ( DEST="${XDG_DATA_HOME}/apps/releases/${APP}" URL=https://github.com/BurntSushi/ripgrep/releases/download/${VERSION}/ripgrep-${VERSION}-$(get_arch)-$(get_os).tar.gz - set -x extract_tarball "${URL}" "${DEST}/${VERSION}" "--strip-component 1" - set +x set_current_link "${DEST}" "${VERSION}" - set -x mkdir_if_missing "${XDG_CONFIG_HOME}/bash/bashrc.d" mkdir_if_missing "${XDG_CONFIG_HOME}/fish/completions" mkdir_if_missing "${MAN_DIR}" - set +x set_link "${XDG_BIN_HOME}/rg" "${DEST}" rg set_link "${MAN_DIR}/rg.1" "${DEST}" doc/rg.1 set_link "${XDG_CONFIG_HOME}/bash/bashrc.d/ripgrep.sh" "${DEST}" complete/rg.bash