Skip to content

Commit

Permalink
Fix output
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy committed Jan 6, 2025
1 parent 36c3558 commit 8efaf8e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,11 @@ runs:
ARGS+=(--php=$PHP_VERSION)

echo "::group::Start Playground server"
printf "Providing arguments: %s," "${ARGS[@]}"

IFS=,
echo "Providing arguments: ${ARGS[*]}"
unset IFS;

./node_modules/@wp-playground/cli/wp-playground.js server "${ARGS[@]}" &
echo "::endgroup::"
env:
Expand Down

0 comments on commit 8efaf8e

Please sign in to comment.