Skip to content

Commit 5a55c4a

Browse files
authored
Merge pull request #1495 from rcknr/cloudflared
Fix extra parameters for share tool, fixes #1494
2 parents 76ece53 + cd3fbb0 commit 5a55c4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

valet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ then
5252

5353
for PARAM in ${PARAMS[@]}
5454
do
55-
if [[ ${PARAM:0:1} == '-' ]]; then
55+
if [[ ${PARAM:0:1} != '-' ]]; then
5656
PARAMS=("${PARAMS[@]/$PARAM}") # Quotes when working with strings
5757
fi
5858
done

0 commit comments

Comments
 (0)