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