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

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