C0E7-4B50

This commit is contained in:
JaKooLit 2025-03-08 23:17:13 +09:00
parent 06e22ad0b3
commit 7fe3d55f43
5 changed files with 5 additions and 5 deletions

View File

@ -84,7 +84,7 @@ if [ -d "ags" ]; then
fi
# Clone nwg-look repository with the specified tag
if git clone --recursive -b "$ags_tag" --depth 1 https://github.com/Aylur/ags.git; then
if git clone --recursive -b "$ags_tag" --depth=1 https://github.com/Aylur/ags.git; then
cd ags || exit 1
# Build and install ags
npm install

View File

@ -30,7 +30,7 @@ if [ -d Hyprland-Dots-Debian ]; then
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
if git clone --depth=1 -b $dots_tag https://github.com/JaKooLit/Hyprland-Dots Hyprland-Dots-Debian; then
cd Hyprland-Dots-Debian || exit 1
chmod +x copy.sh
./copy.sh

View File

@ -36,7 +36,7 @@ if [ -d "GTK-themes-icons" ]; then
fi
echo "$NOTE Cloning ${SKY_BLUE}GTK themes and Icons${RESET} repository..." 2>&1 | tee -a "$LOG"
if git clone --depth 1 https://github.com/JaKooLit/GTK-themes-icons.git ; then
if git clone --depth=1 https://github.com/JaKooLit/GTK-themes-icons.git ; then
cd GTK-themes-icons
chmod +x auto-extract.sh
./auto-extract.sh

View File

@ -37,7 +37,7 @@ if [ -d "$theme_name" ]; then
fi
# Clone the repository
if git clone --depth 1 "$source_theme" "$theme_name"; then
if git clone --depth=1 "$source_theme" "$theme_name"; then
if [ ! -d "$theme_name" ]; then
echo "${ERROR} Failed to clone the repository." | tee -a "$LOG"
fi

View File

@ -24,7 +24,7 @@ printf "${INFO} Installing ${SKY_BLUE}Pokemon color scripts${RESET} ..."
if [ -d "pokemon-colorscripts" ]; then
cd pokemon-colorscripts && git pull && sudo ./install.sh && cd ..
else
git clone --depth 1 https://gitlab.com/phoneybadger/pokemon-colorscripts.git &&
git clone --depth=1 https://gitlab.com/phoneybadger/pokemon-colorscripts.git &&
cd pokemon-colorscripts && sudo ./install.sh && cd ..
fi