mirror of
https://github.com/coder/coder.git
synced 2026-06-03 13:08:25 +00:00
21 lines
310 B
Go
21 lines
310 B
Go
//go:build !windows
|
|
|
|
package cli
|
|
|
|
func installScriptFiles() []string {
|
|
return []string{
|
|
"install.sh",
|
|
"install",
|
|
"bootstrap.sh",
|
|
"bootstrap",
|
|
"setup.sh",
|
|
"setup",
|
|
"script/install.sh",
|
|
"script/install",
|
|
"script/bootstrap.sh",
|
|
"script/bootstrap",
|
|
"script/setup.sh",
|
|
"script/setup",
|
|
}
|
|
}
|