mirror of
https://github.com/Baipyrus/dotfiles.git
synced 2024-12-26 11:21:46 +00:00
bugfix: remove escaped quotes
This commit is contained in:
parent
7f7fc0a8ba
commit
ff07ff7d17
@ -13,5 +13,5 @@ function ChocolateyInstall
|
|||||||
# Start admin process, import this script, run 'InstallPackages' function
|
# Start admin process, import this script, run 'InstallPackages' function
|
||||||
Start-Process powershell.exe -Verb RunAs -Wait `
|
Start-Process powershell.exe -Verb RunAs -Wait `
|
||||||
-ArgumentList "-ExecutionPolicy", "Bypass", `
|
-ArgumentList "-ExecutionPolicy", "Bypass", `
|
||||||
"-C", "'Import-Module ./util/chocolatey.psm1; InstallPackages'"
|
"-C", "Import-Module ./util/chocolatey.psm1; InstallPackages"
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,7 @@ function WingetInstall
|
|||||||
# Start admin process, import this script, run 'InstallPackages' function
|
# Start admin process, import this script, run 'InstallPackages' function
|
||||||
Start-Process powershell.exe -Verb RunAs -Wait `
|
Start-Process powershell.exe -Verb RunAs -Wait `
|
||||||
-ArgumentList "-ExecutionPolicy", "Bypass", `
|
-ArgumentList "-ExecutionPolicy", "Bypass", `
|
||||||
"-C", "'Import-Module ./util/winget.psm1; InstallWinget'"
|
"-C", "Import-Module ./util/winget.psm1; InstallWinget"
|
||||||
}
|
}
|
||||||
|
|
||||||
winget.exe install -s winget --accept-source-agreements (Get-Content ./util/winget.list)
|
winget.exe install -s winget --accept-source-agreements (Get-Content ./util/winget.list)
|
||||||
|
@ -23,7 +23,7 @@ function WSLInstall
|
|||||||
# Start admin process, import this script, run 'InstallPackages' function
|
# Start admin process, import this script, run 'InstallPackages' function
|
||||||
Start-Process powershell.exe -Verb RunAs -Wait `
|
Start-Process powershell.exe -Verb RunAs -Wait `
|
||||||
-ArgumentList "-ExecutionPolicy", "Bypass", `
|
-ArgumentList "-ExecutionPolicy", "Bypass", `
|
||||||
"-C", "'Import-Module ./util/wsl.psm1; InstallWSL'"
|
"-C", "Import-Module ./util/wsl.psm1; InstallWSL"
|
||||||
}
|
}
|
||||||
wsl.exe --install -d Ubuntu
|
wsl.exe --install -d Ubuntu
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user