From d4442f6b0d1eb1b4c3b5c131d1e2f10b7f64ad2f Mon Sep 17 00:00:00 2001 From: jurassicplayer Date: Sat, 6 Jun 2026 08:23:34 -0700 Subject: [PATCH] Change hardcoded ~ to HOME env var (#847) --- scripts/plugin-info.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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