Skip to content

Commit

Permalink
add doublequote arount $TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
k-okada committed Oct 26, 2019
1 parent 63ab3e7 commit 83e6a65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ apt-get update -qq && apt-get install -y -q wget sudo lsb-release gnupg # for do
echo 'debconf debconf/frontend select Noninteractive' | sudo debconf-set-selections
travis_time_end

if [ $TEST == "catkin_lint" ]; then
if [ "$TEST" == "catkin_lint" ]; then

travis_time_start catkin_lint.script
apt-get install -y -q python-pip
Expand All @@ -125,7 +125,7 @@ if [ $TEST == "catkin_lint" ]; then
ROS_DISTRO=melodic catkin_lint --resolve-env --strict $CI_SOURCE_PATH


elif [ $TEST == "clang-format" ]; then
elif [ "$TEST" == "clang-format" ]; then

travis_time_start clang_format.script
apt-get install -y -q clang-format-3.9 git
Expand All @@ -134,7 +134,7 @@ elif [ $TEST == "clang-format" ]; then
git -C $CI_SOURCE_PATH --no-pager diff
git -C $CI_SOURCE_PATH diff-index --quiet HEAD -- .

elif [ $TEST == "clang-tidy" ]; then
elif [ "$TEST" == "clang-tidy" ]; then

setup

Expand Down

0 comments on commit 83e6a65

Please sign in to comment.