File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 94
94
echo ' checking by adding it to hack/.golint_failures (if your reviewer is okay with it).'
95
95
echo
96
96
} >&2
97
- false
97
+ exit 1
98
98
fi
99
99
100
100
if [[ ${# not_failing[@]} -gt 0 ]]; then
@@ -106,7 +106,7 @@ if [[ ${#not_failing[@]} -gt 0 ]]; then
106
106
done
107
107
echo
108
108
} >&2
109
- false
109
+ exit 1
110
110
fi
111
111
112
112
if [[ ${# gone[@]} -gt 0 ]]; then
@@ -118,5 +118,5 @@ if [[ ${#gone[@]} -gt 0 ]]; then
118
118
done
119
119
echo
120
120
} >&2
121
- false
121
+ exit 1
122
122
fi
Original file line number Diff line number Diff line change 169
169
echo ' checking by adding it to hack/.shellcheck_failures (if your reviewer is okay with it).'
170
170
echo
171
171
} >&2
172
- false
172
+ exit 1
173
173
fi
174
174
175
175
if [[ ${# not_failing[@]} -gt 0 ]]; then
@@ -181,7 +181,7 @@ if [[ ${#not_failing[@]} -gt 0 ]]; then
181
181
done
182
182
echo
183
183
} >&2
184
- false
184
+ exit 1
185
185
fi
186
186
187
187
# Check that all failing_packages actually still exist
@@ -199,5 +199,5 @@ if [[ ${#gone[@]} -gt 0 ]]; then
199
199
done
200
200
echo
201
201
} >&2
202
- false
202
+ exit 1
203
203
fi
You can’t perform that action at this time.
0 commit comments