Skip to content

Commit

Permalink
Merge pull request jsk-ros-pkg#29 from k-okada/fix_warning
Browse files Browse the repository at this point in the history
fix for when no value is set
  • Loading branch information
k-okada committed Jan 28, 2015
2 parents e713f97 + b4beeee commit dd253c0
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 @@ -2,7 +2,7 @@

set -x

if [ $ROS_DISTRO == "indigo" -a "$TRAVIS_JOB_ID" ]; then
if [ "$ROS_DISTRO" == "indigo" -a "$TRAVIS_JOB_ID" ]; then
sudo apt-get install -qq -y python-jenkins
./.travis/travis_jenkins.py
exit $?
Expand All @@ -15,8 +15,8 @@ function error {
exit 1
}

[ $BUILDER == rosbuild ] && ( echo "$BUILDER is no longer supported"; exit 1; )
[ $ROSWS == rosws ] && ( echo "$ROSWS is no longer supported"; exit 1; )
[ "$BUILDER" == rosbuild ] && ( echo "$BUILDER is no longer supported"; exit 1; )
[ "$ROSWS" == rosws ] && ( echo "$ROSWS is no longer supported"; exit 1; )

trap error ERR

Expand Down

0 comments on commit dd253c0

Please sign in to comment.