Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Commit

Permalink
fix: remove trailing newline from $ITEM
Browse files Browse the repository at this point in the history
using a clever bash-ism
  • Loading branch information
xynydev committed Aug 27, 2023
1 parent 961dff3 commit 949b06f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/bling/bling.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ find "$PWD" -type f -exec chmod +x {} \;

for ITEM in "${INSTALL[@]}"; do
echo "Pulling from bling: $ITEM"
eval "$PWD/$ITEM".sh
eval "$PWD/${ITEM%$'\n'}.sh"
done

0 comments on commit 949b06f

Please sign in to comment.