mirror of
https://github.com/laravel/valet.git
synced 2026-02-06 08:40:09 +01:00
Merge pull request #1495 from rcknr/cloudflared
Fix extra parameters for share tool, fixes #1494
This commit is contained in:
2
valet
2
valet
@@ -52,7 +52,7 @@ then
|
|||||||
|
|
||||||
for PARAM in ${PARAMS[@]}
|
for PARAM in ${PARAMS[@]}
|
||||||
do
|
do
|
||||||
if [[ ${PARAM:0:1} == '-' ]]; then
|
if [[ ${PARAM:0:1} != '-' ]]; then
|
||||||
PARAMS=("${PARAMS[@]/$PARAM}") # Quotes when working with strings
|
PARAMS=("${PARAMS[@]/$PARAM}") # Quotes when working with strings
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user