Skip to content

Commit a260a3e

Browse files
committed
unneeded
1 parent e56dd62 commit a260a3e

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
@@ -22,32 +22,32 @@ version_check=$(printf '%s\n1.23' "$pint_version" | sort -V | head -1)
2222

2323
pint_command=("pint")
2424
if [[ "${INPUT_TESTMODE}" == true ]]; then
25-
pint_command+=(" --test")
25+
pint_command+=" --test"
2626
fi
2727

2828
if [[ "${INPUT_VERBOSEMODE}" == true ]]; then
29-
pint_command+=(" -v")
29+
pint_command+=" -v"
3030
fi
3131

3232
if [[ "${INPUT_CONFIGPATH}" ]]; then
33-
pint_command+=(" --config ${INPUT_CONFIGPATH}")
33+
pint_command+=" --config ${INPUT_CONFIGPATH}"
3434
fi
3535

3636
if [[ "${INPUT_PRESET}" ]]; then
37-
pint_command+=(" --preset ${INPUT_PRESET}")
37+
pint_command+=" --preset ${INPUT_PRESET}"
3838
fi
3939

4040
if [[ "${INPUT_ONLYDIFF}" ]]; then
41-
pint_command+=(" --diff=${INPUT_ONLYDIFF}")
41+
pint_command+=" --diff=${INPUT_ONLYDIFF}"
4242
fi
4343

4444
if [[ "${INPUT_ONLYDIRTY}" == true ]]; then
45-
pint_command+=(" --dirty")
45+
pint_command+=" --dirty"
4646
fi
4747

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

0 commit comments

Comments
 (0)