6 lines
130 B
PowerShell
6 lines
130 B
PowerShell
#!/bin/pwsh
|
|
if (-not (Test-Path -PathType Leaf $PROFILE)) {
|
|
New-Item -Force $PROFILE;
|
|
}
|
|
|
|
choco install -y --force chocolatey;
|