Skip to content

Commit e252baf

Browse files
author
Jason Mobarak
committed
Wrap with 'if' to avoid a non-zero exit status
1 parent 143f070 commit e252baf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.travis.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@ if echo $file_names | grep -q "Dockerfile"; then
1111
fi
1212

1313
./build.bash --arch=$ARCH
14-
[[ $ARCH = arm ]] && ./build_example.bash
14+
15+
if [[ $ARCH = arm ]] then;
16+
./build_example.bash
17+
fi

0 commit comments

Comments
 (0)