From 953fa74bbfad830e69bbc93960bbdb432fc28da9 Mon Sep 17 00:00:00 2001 From: Brian Carrier <carrier@sleuthkit.org> Date: Wed, 21 Feb 2018 17:42:57 -0500 Subject: [PATCH] fixed typo --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5d8c059b5..2dcc2a0a9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,5 +25,6 @@ install: script: - ./configure && make && make check - - f test ${TRAVIS_OS_NAME} = "linux"; cd release; ./release-unix.pl ci; fi + - if test ${TRAVIS_OS_NAME} = "linux"; cd release; ./release-unix.pl ci; fi + # NOTE: OS X doesn't have ant, so CI fails -- GitLab