File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 10
10
pint_install_command=" ${pint_install_command/: PINT_VERSION/ } "
11
11
fi
12
12
13
- command_string =(" pint" )
13
+ pint_command =(" pint" )
14
14
15
15
if [[ " ${INPUT_TESTMODE} " ]]; then
16
- command_string +=" --test"
16
+ pint_command +=" --test"
17
17
fi
18
18
19
19
if [[ " ${INPUT_VERBOSEMODE} " ]]; then
20
- command_string +=" -v"
20
+ pint_command +=" -v"
21
21
fi
22
22
23
23
if [[ " ${INPUT_CONFIGPATH} " ]]; then
24
- command_string +=" --config ${INPUT_CONFIGPATH} "
24
+ pint_command +=" --config ${INPUT_CONFIGPATH} "
25
25
fi
26
26
27
27
if [[ " ${INPUT_PRESET} " ]]; then
28
- command_string +=" --preset ${INPUT_PRESET} "
28
+ pint_command +=" --preset ${INPUT_PRESET} "
29
29
fi
30
30
31
+ echo " Running Command: " " ${pint_install_command[@]} "
32
+
31
33
${pint_install_command[@]}
32
34
PATH=" /tmp/vendor/bin:${PATH} "
33
35
34
- echo " Running Command: " " ${command_string [@]} "
36
+ echo " Running Command: " " ${pint_command [@]} "
35
37
36
- ${command_string [@]}
38
+ ${pint_command [@]}
You can’t perform that action at this time.
0 commit comments