Fix oversight, this worked on Windows >.>

This commit is contained in:
flash 2018-01-03 02:15:43 +01:00
parent e3722486f9
commit 0ff25b62ed

View file

@ -29,7 +29,7 @@ class Application
public static function gitCommitInfo(string $format): string
{
return trim(shell_exec(sprintf('git log --pretty="%s" -n1 HEAD"', $format)));
return trim(shell_exec(sprintf('git log --pretty="%s" -n1 HEAD', $format)));
}
public static function gitCommitHash(bool $long = false): string