Skip to content

Commit 6e05d8b

Browse files
authored
fix(aztec-up): handle CI=true in timeout function (#22827)
1 parent 97ef976 commit 6e05d8b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

aztec-up/bin/0.0.1/install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function echo_yellow {
4949
}
5050

5151
function timeout {
52-
if [ "${CI:-0}" -eq 1 ]; then
52+
if [ "${CI:-0}" = "1" ] || [ "${CI:-0}" = "true" ]; then
5353
/usr/bin/timeout "$@"
5454
else
5555
shift

0 commit comments

Comments
 (0)