From 5c536931b231289688a76f972e5907a799d49e19 Mon Sep 17 00:00:00 2001 From: Sam Al-Sapti Date: Sat, 12 Nov 2022 17:07:17 +0100 Subject: [PATCH] Fix install script again --- install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 62bccfa..ee710ea 100755 --- a/install.sh +++ b/install.sh @@ -4,7 +4,6 @@ cd -P -- "$(readlink -e "$(dirname "$0")")" || exit 255 echo "=> Checking dependencies..." command -v stow >/dev/null 2>&1 || { echo "Please install GNU Stow!"; exit 1; } -LC_ALL="C" sleep 0.5 echo "=> Determining OS..." @@ -35,7 +34,7 @@ for pkg in "$@"; do [ "$pkg" = "scripts" ] && DASH=1 && mkdir -p "$HOME/.local/bin" [ "$pkg" = "nvim" ] && NVIM=1 - stow -t "$HOME" --ignore="README.md" "$pkg" + LC_ALL="C" stow -t "$HOME" --ignore="README.md" "$pkg" done if [ -n "$ZSH" ]; then