diff --git a/.config/yadm/bootstrap.d/lsd.sh b/.config/yadm/bootstrap.d/lsd.sh index af652ce..f15905e 100755 --- a/.config/yadm/bootstrap.d/lsd.sh +++ b/.config/yadm/bootstrap.d/lsd.sh @@ -8,7 +8,7 @@ if ! command -v lsd &> /dev/null; then if [[ "$ARCH" == "aarch64" ]]; then ARCH=arm64 fi - URL=$(curl -o https://api.github.com/repos/Peltoche/lsd/releases/latest | grep browser_download_url | cut -d '"' -f 4 | grep $ARCH | grep -v musl) + URL=$(curl -s https://api.github.com/repos/Peltoche/lsd/releases/latest | grep browser_download_url | cut -d '"' -f 4 | grep $ARCH | grep -v musl) curl -o /temp/lsd.deb "$URL" sudo dpkg -i /temp/lsd.deb else