aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/atlas.go
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2025-06-26 17:28:10 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2025-06-26 17:28:10 -0400
commit9c4022e270a66d4005d5f210e43c2b62cde0525e (patch)
tree4a46c496d9d079168b4967235e5f49e36cb2b510 /cmd/atlas.go
parent5d30265a850ab647c89e0cae0ffce44ae3e1ce48 (diff)
Add non-interactive mode to shell, fix interactive sizing
Diffstat (limited to 'cmd/atlas.go')
-rw-r--r--cmd/atlas.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd/atlas.go b/cmd/atlas.go
index b0ec3af..f09e556 100644
--- a/cmd/atlas.go
+++ b/cmd/atlas.go
@@ -219,9 +219,7 @@ func main() {
if err := interpreter.Run(); err != nil && err != io.EOF {
slog.Error("Fatal error occured", slog.String("err", err.Error()))
os.Exit(1)
- } else {
- fmt.Println("\nLeaving atlasi.")
- }
+ }
}
}