fix task for get version lifetime on windows

This commit is contained in:
Зеленцов Никита 2022-05-26 16:08:40 +03:00
parent 32a4dd5157
commit f2838a3cfe
1 changed files with 4 additions and 2 deletions

View File

@ -90,9 +90,11 @@ function get_version_file_lifetime()
{ {
global $GAME_ROOT; global $GAME_ROOT;
exec("git log --follow --format=%ad --date=format:'%Y-%m-%d %H:%M:%S' " . $GAME_ROOT . "/VERSION" , $out, $ret); exec("git log --follow --format=%ad --date=format:\"%Y-%m-%d %H:%M:%S\" " . $GAME_ROOT . "/VERSION" , $out, $ret);
if($ret != 0) if($ret != 0)
throw new Exception("git error"); throw new Exception("Can't get date from git.");
$minutes = (time() - strtotime($out[0])) / 60; $minutes = (time() - strtotime($out[0])) / 60;
return ceil($minutes); return ceil($minutes);