1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-09 13:05:56 +00:00

finally make the silent and local installation for nodejs get working on windows - there is no resource online that works correctly LAWL!

Former-commit-id: f6727efd6bbc059c96a0f242b29e10bbac3b65b8
This commit is contained in:
Gerasimos (Makis) Maropoulos
2019-06-23 17:32:37 +03:00
parent aee3c489ed
commit 208e593df7
4 changed files with 108 additions and 38 deletions

View File

@@ -22,3 +22,7 @@ func installDotnet(b bundle) error {
// Right click on the ./scripts/dotnet-install.ps1 and check the "unblock" property, save and exit the dialog.
return powershell("./scripts/dotnet-install.ps1", b.parseArguments()...)
}
func installNode(b bundle) error {
return powershell("./scripts/node-install.ps1", b.parseArguments()...)
}