php build.php --remote=4.0-dev
wait.....
No PHP Errors, Notices or warnings...
Generating github_release.txt file
PHP Warning: Undefined variable $tagVersion in /Users/phil/Sites/JOOMLA/joomla4/build/build.php on line 632
Warning: Undefined variable $tagVersion in /Users/phil/Sites/JOOMLA/joomla4/build/build.php on line 632
Build of version 4.0.0-beta8-dev complete!
MacOS file system
The cause is because we specified a --remote=4.0-dev
in the command and the code only sets $tagVersion
if no remote is provided.
// If not given a remote, assume we are looking for the latest local tag
if (!$remote)
{
chdir($repo);
$tagVersion = system($systemGit . ' describe --tags `' . $systemGit . ' rev-list --tags --max-count=1`', $tagVersion);
$remote = 'tags/' . $tagVersion;
chdir($here);
}
Labels |
Added:
?
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2021-06-01 17:29:35 |
Closed_By | ⇒ | zero-24 |
Will be fixed here and than moved up to 4 after its merged: #34341