Skip to content

Commit

Permalink
Merge pull request #75 from Borwe/exits
Browse files Browse the repository at this point in the history
Exiting: Make Exit(0) use Exit(1) if exiting because of errors
  • Loading branch information
AvicennaJr committed Jan 8, 2024
2 parents 10f7bb2 + 96f5433 commit 9a9bd40
Showing 1 changed file with 14 additions and 19 deletions.
33 changes: 14 additions & 19 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,41 +38,36 @@ func main() {
help := styles.HelpStyle.Render("💡 Tumia exit() au toka() kuondoka")
fmt.Println(lipgloss.JoinVertical(lipgloss.Left, NewLogo, "\n", help))
repl.Start()
os.Exit(0)
return
}

if len(args) == 2 {

switch args[1] {
case "msaada", "-msaada", "--msaada", "help", "-help", "--help", "-h":
fmt.Println(Help)
os.Exit(0)
case "version", "-version", "--version", "-v", "v", "--toleo", "-toleo":
fmt.Println(NewLogo)
os.Exit(0)
case "-docs", "--docs", "-nyaraka", "--nyaraka":
repl.Docs()
os.Exit(0)
}
default:
file := args[1]

file := args[1]
if strings.HasSuffix(file, "nr") || strings.HasSuffix(file, ".sw") {
contents, err := os.ReadFile(file)
if err != nil {
fmt.Println(styles.ErrorStyle.Render("Error: Nuru imeshindwa kusoma faili: ", args[1]))
os.Exit(1)
}

if strings.HasSuffix(file, "nr") || strings.HasSuffix(file, ".sw") {
contents, err := os.ReadFile(file)
if err != nil {
fmt.Println(styles.ErrorStyle.Render("Error: Nuru imeshindwa kusoma faili: ", args[1]))
os.Exit(0)
repl.Read(string(contents))
} else {
fmt.Println(styles.ErrorStyle.Render("'"+file+"'", "sii faili sahihi. Tumia faili la '.nr' au '.sw'"))
os.Exit(1)
}

repl.Read(string(contents))
} else {
fmt.Println(styles.ErrorStyle.Render("'"+file+"'", "sii faili sahihi. Tumia faili la '.nr' au '.sw'"))
os.Exit(0)
}

} else {
fmt.Println(styles.ErrorStyle.Render("Error: Operesheni imeshindikana boss."))
fmt.Println(Help)
os.Exit(0)
os.Exit(1)
}
}

0 comments on commit 9a9bd40

Please sign in to comment.