no longer tag ADOdb with EGroupware version, handling it with own version like other dependencies

This commit is contained in:
ralf 2022-04-20 21:43:42 +02:00
parent 917a4ba79f
commit 1f91bd7201

View File

@ -347,13 +347,6 @@ function do_tag()
// push tags in all apps (not main-dir!)
run_cmd('./install-cli.php --git-apps push -f origin '.escapeshellarg($config['tag']));
// tag and push stuff now in vendor
foreach(array('adodb-php') as $package)
{
run_cmd("cd vendor/egroupware/$package; git tag -f ".escapeshellarg($config['tag']).' -m '.escapeshellarg('Creating '.$config['tag']));
run_cmd("cd vendor/egroupware/$package; git push -f origin ".escapeshellarg($config['tag']));
}
// checkout tag, update composer.{json,lock}, move tag to include them
run_cmd($config['git'].' checkout '.$config['tag']);
update_composer_json_version($config['tag']);
@ -1434,4 +1427,4 @@ function usage($error=null)
exit(90);
}
exit(0);
}
}