mirror of
https://github.com/charmbracelet/glow
synced 2024-12-14 06:02:27 +00:00
Error codes should be in the range of 0 to 125
This commit is contained in:
parent
7a9452dbff
commit
d4239a55db
1 changed files with 1 additions and 1 deletions
2
main.go
2
main.go
|
@ -297,7 +297,7 @@ func runTUI(stashedOnly bool) error {
|
|||
|
||||
func main() {
|
||||
if err := rootCmd.Execute(); err != nil {
|
||||
os.Exit(-1)
|
||||
os.Exit(1)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue