fix typos

This commit is contained in:
2026-06-25 21:35:07 -04:00
parent bee4ed305e
commit 14574ae992
4 changed files with 13 additions and 12 deletions

View File

@@ -18,8 +18,8 @@ func Stop(cmd *cobra.Command, args []string) {
log.Fatal(err)
}
start_cmd := exec.Command("docker", "compose", "down")
if err := start_cmd.Run(); err != nil {
stop_cmd := exec.Command("docker", "compose", "down")
if err := stop_cmd.Run(); err != nil {
log.Fatal(err)
}
}