Skip to content

Commit

Permalink
Merge pull request #1495 from rcknr/cloudflared
Browse files Browse the repository at this point in the history
Fix extra parameters for share tool, fixes #1494
  • Loading branch information
mattstauffer authored Nov 25, 2024
2 parents 76ece53 + cd3fbb0 commit 5a55c4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion valet
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ then

for PARAM in ${PARAMS[@]}
do
if [[ ${PARAM:0:1} == '-' ]]; then
if [[ ${PARAM:0:1} != '-' ]]; then
PARAMS=("${PARAMS[@]/$PARAM}") # Quotes when working with strings
fi
done
Expand Down

0 comments on commit 5a55c4a

Please sign in to comment.