diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-02-21 10:28:33 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-02-21 10:30:10 +0100 |
commit | bdf5656026998ded6ddf5003bc257532388a9656 (patch) | |
tree | eb6636453121caf78595c4f968df497d482cc26c /bin | |
parent | fd777a86270494e45b38c4bfd8a45625ea46425b (diff) |
If version is not provided assume RCMAIL_VERSION (#1488933)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/update.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/update.sh b/bin/update.sh index be952cc2f..05956b933 100755 --- a/bin/update.sh +++ b/bin/update.sh @@ -32,9 +32,11 @@ if (!$opts['version']) { echo "What version are you upgrading from? Type '?' if you don't know.\n"; if (($input = trim(fgets(STDIN))) && preg_match('/^[0-9.]+[a-z-]*$/', $input)) $opts['version'] = $input; + else + $opts['version'] = RCMAIL_VERSION; } -if ($opts['version'] && version_compare(version_parse($opts['version']), version_parse(RCMAIL_VERSION), '>')) +if ($opts['version'] && version_compare(version_parse($opts['version']), version_parse(RCMAIL_VERSION), '>=')) die("Nothing to be done here. Bye!\n"); |