From 9a69441be1f17334716fa762aa12254fe77a3390 Mon Sep 17 00:00:00 2001 From: Da_Person Date: Wed, 2 Jul 2025 23:16:39 -0700 Subject: [PATCH] Remove some dependencies and update for Shellcheck --- install-scripts/hyprlock.sh | 4 +--- install-scripts/hyprutils.sh | 2 +- install-scripts/hyprwayland-scanner.sh | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/install-scripts/hyprlock.sh b/install-scripts/hyprlock.sh index 1431d40..208cbad 100755 --- a/install-scripts/hyprlock.sh +++ b/install-scripts/hyprlock.sh @@ -7,8 +7,6 @@ lock=( libgbm-dev libdrm-dev libmagic-dev - libhyprlang-dev - libhyprutils-dev ) #specific branch or release @@ -55,7 +53,7 @@ if git clone --recursive -b $lock_tag https://github.com/hyprwm/hyprlock.git; th echo -e "${ERROR} Installation failed for ${YELLOW}hyprlock $lock_tag${RESET}" 2>&1 | tee -a "$MLOG" fi #moving the addional logs to Install-Logs directory - mv $MLOG ../Install-Logs/ || true + mv "$MLOG" ../Install-Logs/ || true cd .. else echo -e "${ERROR} Download failed for ${YELLOW}hyprlock $lock_tag${RESET}" 2>&1 | tee -a "$LOG" diff --git a/install-scripts/hyprutils.sh b/install-scripts/hyprutils.sh index 85a7ba0..3929392 100755 --- a/install-scripts/hyprutils.sh +++ b/install-scripts/hyprutils.sh @@ -43,7 +43,7 @@ if git clone --recursive -b $lang_tag https://github.com/hyprwm/hyprutils.git; t echo -e "${ERROR} Installation failed for ${YELLOW}hyprutils $lang_tag${RESET}" 2>&1 | tee -a "$MLOG" fi #moving the addional logs to Install-Logs directory - mv $MLOG ../Install-Logs/ || true + mv "$MLOG" ../Install-Logs/ || true cd .. else echo -e "${ERROR} Download failed for ${YELLOW}hyprutils $lang_tag${RESET}" 2>&1 | tee -a "$LOG" diff --git a/install-scripts/hyprwayland-scanner.sh b/install-scripts/hyprwayland-scanner.sh index 8ca2e63..02f4363 100755 --- a/install-scripts/hyprwayland-scanner.sh +++ b/install-scripts/hyprwayland-scanner.sh @@ -43,7 +43,7 @@ if git clone --recursive -b $lang_tag https://github.com/hyprwm/hyprwayland-scan echo -e "${ERROR} Installation failed for ${YELLOW}hyprwayland-scanner $lang_tag${RESET}" 2>&1 | tee -a "$MLOG" fi #moving the addional logs to Install-Logs directory - mv $MLOG ../Install-Logs/ || true + mv "$MLOG" ../Install-Logs/ || true cd .. else echo -e "${ERROR} Download failed for ${YELLOW}hyprwayland-scanner $lang_tag${RESET}" 2>&1 | tee -a "$LOG"