Skip to content

Commit

Permalink
fix(deck): fix Handheld Controller Glyphs theme folder casing (#1096)
Browse files Browse the repository at this point in the history
* fix(deck): Change Handheld Controller Glyphs theme folder casing

* fix rm command

* fix casing in third-party-css-loader-update
  • Loading branch information
victor-borges authored May 11, 2024
1 parent e61cd24 commit 6181223
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ install-hhd-xbox-glyph-theme:
install-hhd-controller-glyph-theme:
#!/usr/bin/bash
if [ -d "$HOME/homebrew/themes" ]; then
rm -rf "$HOME/homebrew/themes/Handheld-Controller-Glyphs"
git clone https://github.com/victor-borges/handheld-controller-glyphs.git --single-branch "$HOME/homebrew/themes/Handheld-Controller-Glyphs"
rm -rf "$HOME/homebrew/themes/handheld-controller-glyphs"
git clone https://github.com/victor-borges/handheld-controller-glyphs.git --single-branch "$HOME/homebrew/themes/handheld-controller-glyphs"
else
echo 'Please install Decky Loader & CSS Loader first'
fi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ if [ -d "$HOME/homebrew/themes/PS5-to-Xbox-glyphs/.git" ]; then
fi

# Handheld Controller Glyphs
if [ -d "$HOME/homebrew/themes/Handheld-Controller-Glyphs/.git" ]; then
cd "$HOME/homebrew/themes/Handheld-Controller-Glyphs"
echo "Handheld-Controller-Glyphs theme found, pulling latest with git."
if [ -d "$HOME/homebrew/themes/handheld-controller-glyphs/.git" ]; then
cd "$HOME/homebrew/themes/handheld-controller-glyphs"
echo "handheld-controller-glyphs theme found, pulling latest with git."
git pull
echo "Update complete."
fi
Expand Down

0 comments on commit 6181223

Please sign in to comment.