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 @@ -24,32 +24,32 @@ version_check=$(printf '%s\n1.23' "$pint_version" | sort -V | head -1)
2424# Build command with consistent array syntax
2525pint_command=(" pint" )
2626if [[ " ${INPUT_TESTMODE} " == true ]]; then
27- pint_command+=(" --test" )
27+ pint_command+=(" --test" )
2828fi
2929
3030if [[ " ${INPUT_VERBOSEMODE} " == true ]]; then
31- pint_command+=(" -v" )
31+ pint_command+=(" -v" )
3232fi
3333
3434if [[ " ${INPUT_CONFIGPATH} " ]]; then
35- pint_command+=(" --config" " ${INPUT_CONFIGPATH} " )
35+ pint_command+=(" --config" " ${INPUT_CONFIGPATH} " )
3636fi
3737
3838if [[ " ${INPUT_PRESET} " ]]; then
39- pint_command+=(" --preset" " ${INPUT_PRESET} " )
39+ pint_command+=(" --preset" " ${INPUT_PRESET} " )
4040fi
4141
4242if [[ " ${INPUT_ONLYDIFF} " ]]; then
43- pint_command+=(" --diff=${INPUT_ONLYDIFF} " )
43+ pint_command+=(" --diff=${INPUT_ONLYDIFF} " )
4444fi
4545
4646if [[ " ${INPUT_ONLYDIRTY} " == true ]]; then
47- pint_command+=(" --dirty" )
47+ pint_command+=(" --dirty" )
4848fi
4949
5050if [[ " ${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."
You can’t perform that action at this time.
0 commit comments