mirror of https://github.com/Hilbis/Hilbish
fix: make -S flag set absolute path to hilbish
parent
38d036d96f
commit
0e4b95d9b9
9
main.go
9
main.go
|
@ -6,6 +6,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
|
"os/exec"
|
||||||
"os/user"
|
"os/user"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
@ -115,7 +116,13 @@ func main() {
|
||||||
|
|
||||||
// Set $SHELL if the user wants to
|
// Set $SHELL if the user wants to
|
||||||
if *setshflag {
|
if *setshflag {
|
||||||
os.Setenv("SHELL", os.Args[0])
|
os.Setenv("SHELL", "hilbish")
|
||||||
|
|
||||||
|
path, err := exec.LookPath("hilbish")
|
||||||
|
if err == nil {
|
||||||
|
os.Setenv("SHELL", path)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
lr = newLineReader("", false)
|
lr = newLineReader("", false)
|
||||||
|
|
Loading…
Reference in New Issue