Include full build id

This commit is contained in:
Nabeel Shahzad
2020-02-23 20:59:09 -05:00
parent 24e2576645
commit 574768262d

View File

@@ -58,7 +58,8 @@ class Version extends Command
file_put_contents($version_file, Yaml::dump($cfg, 4, 2));
}
$version = $this->versionSvc->getCurrentVersion(!$this->option('base-only'));
$incl_build = empty($this->option('base-only')) ? true : false;
$version = $this->versionSvc->getCurrentVersion($incl_build);
echo $version."\n";
}
}