Add support for the sudo
command
This commit is contained in:
parent
0a464c90d9
commit
91d0d635a1
|
@ -10,5 +10,6 @@ function Start-Operation {
|
|||
$env:CONFIG_MODULE = Resolve-Path $env:CONFIG_MODULE;
|
||||
}
|
||||
|
||||
New-Alias "sudo" gsudo;
|
||||
& $Action;
|
||||
}
|
||||
|
|
|
@ -48,6 +48,12 @@ $null = New-Module {
|
|||
continue;
|
||||
}
|
||||
|
||||
if (-not (Test-Command "gsudo")) {
|
||||
Install-ChocoPackage gsudo;
|
||||
refreshenv;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (-not (Test-Command "git")) {
|
||||
Install-ChocoPackage git;
|
||||
refreshenv;
|
||||
|
|
Loading…
Reference in a new issue