Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

chore: clean up some command text #15

Merged
merged 1 commit into from
Apr 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ fmt: ; $(info $(M) running gofmt…) @ ## Run gofmt on all source files
$Q $(GO) fmt $(PKGS)

.PHONY: shoulders
shoulders: | $(SHOULDERS) ; $(info $(M) running shoulders...) @ ## Run shoulders
shoulders: | $(SHOULDERS) ; $(info $(M) running shoulders) @ ## Run shoulders
$Q $(SHOULDERS) -w -n Blox
# Misc

Expand Down
2 changes: 1 addition & 1 deletion cmd/blox_build.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var (

var buildCmd = &cobra.Command{
Use: "build",
Short: "Convert, Validate, & Build Your JSON Blox",
Short: "Validate and build your data",
Run: func(cmd *cobra.Command, args []string) {
database, err := cuedb.NewDatabase()
cobra.CheckErr(err)
Expand Down
2 changes: 1 addition & 1 deletion cmd/remote_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
// listCmd represents the list command
var remoteListCmd = &cobra.Command{
Use: "list",
Short: "A brief description of your command",
Short: "List schemas and versions available in a remote repository",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:

Expand Down
2 changes: 1 addition & 1 deletion cmd/repo_build.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
// repoBuildCmd represents the build command
var repoBuildCmd = &cobra.Command{
Use: "build",
Short: "A brief description of your command",
Short: "Build the schema repository",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:

Expand Down