Aleksander Machniak
2013-02-21 63cf4fc823b10212663361d2ede0a82f3ccc8e30
If version is not provided assume RCMAIL_VERSION (#1488933)
1 files modified
4 ■■■ changed files
bin/update.sh 4 ●●● patch | view | raw | blame | history
bin/update.sh
@@ -32,9 +32,11 @@
  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");