Skip to content

Commit

Permalink
v3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
escapace committed Jan 16, 2019
1 parent c96ddd9 commit df316b1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions manage
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,19 @@
# @dependency sort
# @dependency tr

if ((BASH_VERSINFO[0] >= 4)) &&
if ((BASH_VERSINFO[0] == 4)) &&
((BASH_VERSINFO[1] >= 2))
then
true
elif ((BASH_VERSINFO[0] >= 5))
then
true
else
echo "You need at least GNU bash, version 4.2" >&2
exit 1
fi

MANAGE_VERSION="v3.1.1"
MANAGE_VERSION="v3.1.2"

MANAGE_IS_CI () {
# Returns 0 if the current environment
Expand Down

0 comments on commit df316b1

Please sign in to comment.