Making installer more robust

This commit is contained in:
Pavel Shevaev 2025-03-03 15:31:47 +03:00
parent 0a5c12e366
commit 53599f1fc8
2 changed files with 8 additions and 2 deletions

View File

@ -7,7 +7,7 @@ task('dotnet_set_env', ['always' => true], function() {
});
task('dotnet_install', function(array $args) {
DotnetSupport::install(isset($args[0]) && $args[0] === '--force');
DotnetSupport::installEx(isset($args[0]) && $args[0] === '--force');
});
function dotnet_shell($cmd)

View File

@ -7,7 +7,13 @@ class DotnetSupport
{
const VERSION = "8.0.0";
static function install(bool $force = false)
//NOTE: this is a composer event, it doesn't accept any arguments
static function install()
{
self::installEx(false);
}
static function installEx(bool $force = false)
{
$version = self::VERSION;