diff options
| author | jurassicplayer <jurassicplayer75@gmail.com> | 2026-06-06 08:23:34 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-06 11:23:34 -0400 |
| commit | d4442f6b0d1eb1b4c3b5c131d1e2f10b7f64ad2f (patch) | |
| tree | 5a68b5245531212f60272dbfd9e38697c73ca92d | |
| parent | 7a629f1cef4d0c1fded84522aeb2cec02c39cc62 (diff) | |
| download | decky-loader-d4442f6b0d1eb1b4c3b5c131d1e2f10b7f64ad2f.tar.gz decky-loader-d4442f6b0d1eb1b4c3b5c131d1e2f10b7f64ad2f.zip | |
Change hardcoded ~ to HOME env var (#847)
| -rwxr-xr-x | scripts/plugin-info.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/plugin-info.sh b/scripts/plugin-info.sh index 2a2feadb..f1a79d90 100755 --- a/scripts/plugin-info.sh +++ b/scripts/plugin-info.sh @@ -2,7 +2,7 @@ # Adapted from a script provided by Jaynator495. # Make sure to place in home directory, chmod +x plugin-info.sh and then run with ./plugin-info.sh # Define the directory to scan -directory_to_scan="~/homebrew/plugins" +directory_to_scan="$HOME/homebrew/plugins" # Loop through each subdirectory (one level deep) for dir in "$directory_to_scan"/*/; do |
