From 0eaf934c1520e6072fb98b29fa9f2509e90b7c7a Mon Sep 17 00:00:00 2001 From: PorridgePi Date: Wed, 28 Sep 2022 20:00:22 +0800 Subject: [PATCH] bootstrap: lsd: fix: Add missing dollar sign --- .config/yadm/bootstrap.d/lsd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/yadm/bootstrap.d/lsd.sh b/.config/yadm/bootstrap.d/lsd.sh index aed7d9e..92d8c63 100755 --- a/.config/yadm/bootstrap.d/lsd.sh +++ b/.config/yadm/bootstrap.d/lsd.sh @@ -3,7 +3,7 @@ if ! command -v lsd &> /dev/null; then if [[ "$OSNAME" == "Linux" ]]; then # Linux - if [[ "DISTRO_TYPE" == "debian" ]]; then + if [[ "$DISTRO_TYPE" == "debian" ]]; then # Debian-based URL=$(curl -s https://api.github.com/repos/Peltoche/lsd/releases/latest | grep browser_download_url | cut -d '"' -f 4 | grep $(uname -m) | grep -v musl) curl -o /temp/lsd.deb "$URL"