Skip to content

Commit bdefd9f

Browse files
committed
1 parent c6a18b4 commit bdefd9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pkgbuild=$INPUT_PKGBUILD
88
assets=$INPUT_ASSETS
99
updpkgsums=$INPUT_UPDPKGSUMS
1010
test=$INPUT_TEST
11-
test_flags=$INPUT_TEST_FLAGS
11+
read -r -a test_flags <<< "$INPUT_TEST_FLAGS"
1212
commit_username=$INPUT_COMMIT_USERNAME
1313
commit_email=$INPUT_COMMIT_EMAIL
1414
ssh_private_key=$INPUT_SSH_PRIVATE_KEY
@@ -83,7 +83,7 @@ fi
8383
if [ "$test" == "true" ]; then
8484
echo '::group::Building package with makepkg'
8585
cd /tmp/local-repo/
86-
makepkg $test_flags
86+
makepkg "${test_flags[@]}"
8787
echo '::endgroup::'
8888
fi
8989

0 commit comments

Comments
 (0)