remove unneeded escaping

main
Zynh Ludwig 2024-08-01 03:21:36 -07:00
parent d9b88eb118
commit b246a21742
1 changed files with 5 additions and 5 deletions

View File

@ -25,13 +25,13 @@ in
repo=''${args[0]} repo=''${args[0]}
target=''${args[1]} target=''${args[1]}
if [ -d "''$target" ]; then if [ -d "$target" ]; then
files=($target"/*") files=("$($target)/*")
if [[ ''$(''$files[@]) -gt 0 ]]; then if [[ $($files[@]) -gt 0 ]]; then
echo "~ Found Files at ''$target ~" echo "~ Found Files at $target ~"
else else
echo "~ No Files in ''$target ~" echo "~ No Files in $target ~"
fi fi
fi fi
done < "${config.repo-clone.pkg}" done < "${config.repo-clone.pkg}"