Skip to content

Commit c509bff

Browse files
committed
need these spaces
1 parent 964b229 commit c509bff

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

entrypoint.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,32 +24,32 @@ version_check=$(printf '%s\n1.23' "$pint_version" | sort -V | head -1)
2424
# Build command with consistent array syntax
2525
pint_command=("pint")
2626
if [[ "${INPUT_TESTMODE}" == true ]]; then
27-
pint_command+=("--test")
27+
pint_command+=(" --test")
2828
fi
2929

3030
if [[ "${INPUT_VERBOSEMODE}" == true ]]; then
31-
pint_command+=("-v")
31+
pint_command+=(" -v")
3232
fi
3333

3434
if [[ "${INPUT_CONFIGPATH}" ]]; then
35-
pint_command+=("--config" "${INPUT_CONFIGPATH}")
35+
pint_command+=(" --config" "${INPUT_CONFIGPATH}")
3636
fi
3737

3838
if [[ "${INPUT_PRESET}" ]]; then
39-
pint_command+=("--preset" "${INPUT_PRESET}")
39+
pint_command+=(" --preset" "${INPUT_PRESET}")
4040
fi
4141

4242
if [[ "${INPUT_ONLYDIFF}" ]]; then
43-
pint_command+=("--diff=${INPUT_ONLYDIFF}")
43+
pint_command+=(" --diff=${INPUT_ONLYDIFF}")
4444
fi
4545

4646
if [[ "${INPUT_ONLYDIRTY}" == true ]]; then
47-
pint_command+=("--dirty")
47+
pint_command+=(" --dirty")
4848
fi
4949

5050
if [[ "${INPUT_PARALLEL}" == true ]]; then
5151
if [[ "$version_check" == "1.23" ]]; then
52-
pint_command+=("--parallel")
52+
pint_command+=(" --parallel")
5353
echo "Parallel mode enabled (Pint version: $pint_version)"
5454
else
5555
echo "Warning: Parallel mode requested but Pint version $pint_version < 1.23. Skipping --parallel flag."

0 commit comments

Comments
 (0)