mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
aee3c489ed
Former-commit-id: 685b296f62c63f98455dce36ce52989be772ba34
16 lines
286 B
Go
16 lines
286 B
Go
// +build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func sh(script string, args ...string) error {
|
|
return (&platform{"bin/sh"}).attach(append([]string{script}, args...)...)
|
|
}
|
|
|
|
func installDotnet(b bundle) error {
|
|
return sh("./scripts/dotnet-install.sh", b.parseArguments()...)
|
|
}
|