Skip to content

Commit

Permalink
Fix splitting SAIL_FILES into array (laravel#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenscheel authored Aug 8, 2022
1 parent 2b162ac commit 8eb6d71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/sail
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ fi

if [ -n "$SAIL_FILES" ]; then
# Convert SAIL_FILES to an array...
SAIL_FILES=("${SAIL_FILES//:/ }")
IFS=':' read -ra SAIL_FILES <<< "$SAIL_FILES"

for FILE in "${SAIL_FILES[@]}"; do
if [ -f "$FILE" ]; then
Expand Down

0 comments on commit 8eb6d71

Please sign in to comment.