From b83b3e80baa4d185ac262758ad4b18897ef3cb87 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Sat, 25 Oct 2025 06:13:32 -0400 Subject: [PATCH] Fixed script not pulling current Hyprland dotfiles On branch main Your branch is up to date with 'origin/main'. Changes to be committed: modified: install-scripts/dotfiles-branch.sh --- install-scripts/dotfiles-branch.sh | 35 ++++++++++++++++-------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/install-scripts/dotfiles-branch.sh b/install-scripts/dotfiles-branch.sh index 61744a3..070fd7a 100644 --- a/install-scripts/dotfiles-branch.sh +++ b/install-scripts/dotfiles-branch.sh @@ -3,19 +3,22 @@ # Hyprland-Dots to download from main # #specific branch or release -dots_tag="Debian-Dots" +dots_tag="main" ## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ## -SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" # Change the working directory to the parent directory of the script PARENT_DIR="$SCRIPT_DIR/.." -cd "$PARENT_DIR" || { echo "${ERROR} Failed to change directory to $PARENT_DIR"; exit 1; } +cd "$PARENT_DIR" || { + echo "${ERROR} Failed to change directory to $PARENT_DIR" + exit 1 +} # Source the global functions script if ! source "$(dirname "$(readlink -f "$0")")/Global_functions.sh"; then - echo "Failed to source Global_functions.sh" - exit 1 + echo "Failed to source Global_functions.sh" + exit 1 fi # Check if Hyprland-Dots exists @@ -23,18 +26,18 @@ printf "${NOTE} Cloning and Installing ${SKY_BLUE}KooL's Hyprland Dots for Debia # Check if Hyprland-Dots exists if [ -d Hyprland-Dots-Debian ]; then - cd Hyprland-Dots-Debian - git stash && git pull - chmod +x copy.sh - ./copy.sh -else - if git clone --depth=1 -b $dots_tag https://github.com/JaKooLit/Hyprland-Dots Hyprland-Dots-Debian; then - cd Hyprland-Dots-Debian || exit 1 + cd Hyprland-Dots-Debian + git stash && git pull chmod +x copy.sh - ./copy.sh - else - echo -e "$ERROR Can't download ${YELLOW}KooL's Hyprland-Dots-Debian${RESET}" - fi + ./copy.sh +else + if git clone --depth=1 https://github.com/JaKooLit/Hyprland-Dots Hyprland-Dots-Debian; then + cd Hyprland-Dots-Debian || exit 1 + chmod +x copy.sh + ./copy.sh + else + echo -e "$ERROR Can't download ${YELLOW}KooL's Hyprland-Dots-Debian${RESET}" + fi fi printf "\n%.0s" {1..2}