a81a450e7e
Merged into tinqs/studio: - cmd/tinqs-cli/ — tinqs-cli (Go binary, from bot/cli) - cmd/tea/ — Gitea CLI tool (from tinqs/cli-tea) - services/bot/ — Bot service (from tinqs-ltd/bot on git.arikigame.com) - services/admin/ — Admin panel (from tinqs/admin) - services/team-tool/ — Team Tool (from tinqs/team-tool) - services/proxy/ — tinqs-proxy (from bot/proxy) - web/landing/ — tinqs.com website (from tinqs/website) - web/docs/ — Platform docs (from tinqs/docs) - web/blog/ — Blog (placeholder) - runner/ — Ephemeral CI runner (from tinqs/runner) All source repos will be deleted after verification.
46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// Tinqs CLI — command line tool for Tinqs Git Studio.
|
|
package main // import "git.arikigame.com/tinqs-ltd/tinqs-cli"
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
|
|
"git.arikigame.com/tinqs-ltd/tinqs-cli/cmd"
|
|
teacontext "git.arikigame.com/tinqs-ltd/tinqs-cli/modules/context"
|
|
"git.arikigame.com/tinqs-ltd/tinqs-cli/modules/debug"
|
|
)
|
|
|
|
func main() {
|
|
app := cmd.App()
|
|
app.Flags = append(app.Flags, debug.CliFlag())
|
|
err := app.Run(context.Background(), preprocessArgs(os.Args))
|
|
if err != nil {
|
|
if errors.Is(err, teacontext.ErrCommandCanceled) {
|
|
os.Exit(0)
|
|
}
|
|
// app.Run already exits for errors implementing ErrorCoder,
|
|
// so we only handle generic errors with code 1 here.
|
|
fmt.Fprintf(app.ErrWriter, "Error: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
// preprocessArgs normalizes command-line arguments.
|
|
// Converts "-o-" to "-o -" for the api command's output flag.
|
|
func preprocessArgs(args []string) []string {
|
|
result := make([]string, 0, len(args)+1)
|
|
for _, arg := range args {
|
|
if arg == "-o-" {
|
|
result = append(result, "-o", "-")
|
|
} else {
|
|
result = append(result, arg)
|
|
}
|
|
}
|
|
return result
|
|
}
|