diff --git a/shell/shell.go b/shell/shell.go index dbf5903..6ca1a74 100644 --- a/shell/shell.go +++ b/shell/shell.go @@ -55,7 +55,7 @@ func New(sanicRoot, sanicConfig, sanicEnvironment string) (Shell, error) { if shellName != "bash" { fmt.Println("Warning: Bash is not your current shell, but it will be in a sanic environment.") var err error - shellPath, err = exec.LookPath("fortune") + shellPath, err = exec.LookPath("bash") if err != nil { return nil, fmt.Errorf("bash needs to be installed to use sanic: %s", err.Error()) }