From e6467e68a40b381568bad448faf0a1413c72fc7f Mon Sep 17 00:00:00 2001 From: simonspa <1677436+simonspa@users.noreply.github.com> Date: Sun, 10 Mar 2024 11:14:56 +0100 Subject: [PATCH] Pass entire array to pio, no only first element (#5) --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index de92c3e..dbb4faa 100644 --- a/action.yml +++ b/action.yml @@ -77,4 +77,4 @@ runs: if [ -n "$verbose" ]; then args+=("--verbose"); fi if [ -n "$disable_auto_clean" ]; then args+=("--disable-auto-clean"); fi - echo $args | xargs pio run + echo ${args[*]} | xargs pio run