Files
coder/agent/usershell/usershell_darwin.go
2022-05-19 15:09:27 -04:00

9 lines
151 B
Go

package usershell
import "os"
// Get returns the $SHELL environment variable.
func Get(_ string) (string, error) {
return os.Getenv("SHELL"), nil
}