Skip to content

Commit d414a01

Browse files
author
Greg Bowler
committed
normalise true/false values into the phpcs 1/0 expected values
1 parent 4f7a2a1 commit d414a01

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

phpcs-action.bash

+11-1
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,21 @@ fi
9797

9898
if [ -n "$ACTION_IGNORE_WARNINGS_ON_EXIT" ]
9999
then
100-
command_string+=(--runtime-set ignore_warnings_on_exit "$ACTION_IGNORE_WARNINGS_ON_EXIT")
100+
case "$ACTION_IGNORE_WARNINGS_ON_EXIT" in
101+
'true'|'1') normalised_value=1 ;;
102+
'false'|'0') normalised_value=0 ;;
103+
*) normalised_value=0 ;;
104+
esac
105+
command_string+=(--runtime-set ignore_warnings_on_exit "$normalised_value")
101106
fi
102107

103108
if [ -n "$ACTION_IGNORE_ERRORS_ON_EXIT" ]
104109
then
110+
case "$ACTION_IGNORE_ERRORS_ON_EXIT" in
111+
'true'|'1') normalised_value=1 ;;
112+
'false'|'0') normalised_value=0 ;;
113+
*) normalised_value=0 ;;
114+
esac
105115
command_string+=(--runtime-set ignore_errors_on_exit "$ACTION_IGNORE_ERRORS_ON_EXIT")
106116
fi
107117

0 commit comments

Comments
 (0)