File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -22,32 +22,32 @@ version_check=$(printf '%s\n1.23' "$pint_version" | sort -V | head -1)
2222
2323pint_command=(" pint" )
2424if [[ " ${INPUT_TESTMODE} " == true ]]; then
25- pint_command+=( " --test" )
25+ pint_command+=" --test"
2626fi
2727
2828if [[ " ${INPUT_VERBOSEMODE} " == true ]]; then
29- pint_command+=( " -v" )
29+ pint_command+=" -v"
3030fi
3131
3232if [[ " ${INPUT_CONFIGPATH} " ]]; then
33- pint_command+=( " --config ${INPUT_CONFIGPATH} " )
33+ pint_command+=" --config ${INPUT_CONFIGPATH} "
3434fi
3535
3636if [[ " ${INPUT_PRESET} " ]]; then
37- pint_command+=( " --preset ${INPUT_PRESET} " )
37+ pint_command+=" --preset ${INPUT_PRESET} "
3838fi
3939
4040if [[ " ${INPUT_ONLYDIFF} " ]]; then
41- pint_command+=( " --diff=${INPUT_ONLYDIFF} " )
41+ pint_command+=" --diff=${INPUT_ONLYDIFF} "
4242fi
4343
4444if [[ " ${INPUT_ONLYDIRTY} " == true ]]; then
45- pint_command+=( " --dirty" )
45+ pint_command+=" --dirty"
4646fi
4747
4848if [[ " ${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."
You can’t perform that action at this time.
0 commit comments