diff --git a/dotnet.inc.php b/dotnet.inc.php index b3352b1..92006c5 100644 --- a/dotnet.inc.php +++ b/dotnet.inc.php @@ -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) diff --git a/support.inc.php b/support.inc.php index 5136a00..7b81b28 100644 --- a/support.inc.php +++ b/support.inc.php @@ -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;