We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_flags
1 parent c6a18b4 commit bdefd9fCopy full SHA for bdefd9f
build.sh
@@ -8,7 +8,7 @@ pkgbuild=$INPUT_PKGBUILD
8
assets=$INPUT_ASSETS
9
updpkgsums=$INPUT_UPDPKGSUMS
10
test=$INPUT_TEST
11
-test_flags=$INPUT_TEST_FLAGS
+read -r -a test_flags <<< "$INPUT_TEST_FLAGS"
12
commit_username=$INPUT_COMMIT_USERNAME
13
commit_email=$INPUT_COMMIT_EMAIL
14
ssh_private_key=$INPUT_SSH_PRIVATE_KEY
@@ -83,7 +83,7 @@ fi
83
if [ "$test" == "true" ]; then
84
echo '::group::Building package with makepkg'
85
cd /tmp/local-repo/
86
- makepkg $test_flags
+ makepkg "${test_flags[@]}"
87
echo '::endgroup::'
88
fi
89
0 commit comments