Fixed invalid references to pastebin now scratchbox

This commit is contained in:
2026-05-31 17:13:34 -05:00
parent efc9eeb536
commit 696b5c57f7
6 changed files with 13 additions and 13 deletions
@@ -17,9 +17,9 @@ func main() {
func newRootCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "scratchbox",
Short: "Scratchbox CLI",
SilenceUsage: true,
Use: "scratchbox",
Short: "Scratchbox CLI",
SilenceUsage: true,
SilenceErrors: true,
RunE: func(cmd *cobra.Command, _ []string) error {
return cmd.Help()
@@ -39,7 +39,7 @@ func run(configPath string) error {
return fmt.Errorf("config load failed: %w", err)
}
logger := log.New(os.Stdout, "[pastebin] ", log.LstdFlags|log.LUTC)
logger := log.New(os.Stdout, "[scratchbox] ", log.LstdFlags|log.LUTC)
store, err := storage.NewFilesystemStore(cfg.Storage.DataDir)
if err != nil {