Skip to content

Commit

Permalink
Merged in feature/MTM-26609 (pull request #2)
Browse files Browse the repository at this point in the history
[MTM-26609] Delete single '=' from '==' each

Approved-by: Ivan Korolev <ivan.korolev@cumulocity.com>
  • Loading branch information
rina23q committed May 28, 2019
2 parents 46aa0b1 + 9b363fc commit b18bd6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ $(basename $0) -h -- Show this help.
$(basename $0) ask -- Show ntcagent and smsagent current versions.
$(basename $0) <version> -- Update version number to <version>."

if [ "$1" == "" -o "$1" == "-h" ]; then
if [ "$1" = "" -o "$1" = "-h" ]; then
echo "$USAGE"
elif [ "$1" == "ask" ]; then
elif [ "$1" = "ask" ]; then
echo -n "libsera: "
grep 'REALNAME:=' Makefile | cut -c 21-
else
Expand Down

0 comments on commit b18bd6c

Please sign in to comment.