This commit is contained in:
2025-07-29 17:04:45 +02:00
parent d8e0bffe56
commit 68e13938b7
10 changed files with 276 additions and 176 deletions

View File

@@ -10,7 +10,6 @@ import (
"cloudsave/cmd/cli/commands/version"
"context"
"flag"
"fmt"
"os"
"github.com/google/subcommands"
@@ -33,8 +32,5 @@ func main() {
flag.Parse()
ctx := context.Background()
exitCode := subcommands.Execute(ctx)
fmt.Println()
os.Exit(int(exitCode))
os.Exit(int(subcommands.Execute(ctx)))
}