2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-02 19:53:23 +00:00

fix: correct description for -n

This commit is contained in:
sammy 2021-05-08 09:30:32 -04:00
parent 8d5e36bcde
commit 1bacbfc778
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5

View File

@ -50,7 +50,7 @@ func main() {
configflag := getopt.StringLong("config", 'C', defaultconfpath, "Sets the path to Hilbish's config")
getopt.BoolLong("login", 'l', "Makes Hilbish act like a login shell")
getopt.BoolLong("interactive", 'i', "Force Hilbish to be an interactive shell")
getopt.BoolLong("noexec", 'n', "Force Hilbish to be an interactive shell")
getopt.BoolLong("noexec", 'n', "Don't execute and only report Lua syntax errors")
getopt.Parse()
loginshflag := getopt.Lookup('l').Seen()