Skip to content

Commit

Permalink
chore: Get executable name from the command
Browse files Browse the repository at this point in the history
Signed-off-by: dwertent <[email protected]>
  • Loading branch information
dwertent committed Sep 11, 2024
1 parent a459b82 commit 046b17f
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 15 deletions.
2 changes: 1 addition & 1 deletion cmd/accounts_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ var accountsCreateCmd = &cobra.Command{
}
account, err := stackManager.CreateAccount(args[1:])
if err != nil {
return err
return fmt.Errorf("%s. usage: %s accounts create <stack_name> <org_name> <account_name>", err.Error(), ExecFileName)
}
fmt.Print(account)
fmt.Print("\n")
Expand Down
2 changes: 1 addition & 1 deletion cmd/accounts_list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ func TestAccountListCmd(t *testing.T) {
testNames := []string{"stack-1", "stack-2", "stack-3", "stack-4", "stack-5"}
for _, stackNames := range testNames {
createCmd := accountsCreateCmd
createCmd.SetArgs([]string{"ff", "create", stackNames})
createCmd.SetArgs([]string{ExecFileName, "create", stackNames})
err := createCmd.Execute()
if err != nil {
t.Fatalf("Failed to create account for testing: %v", err)
Expand Down
2 changes: 1 addition & 1 deletion cmd/deploy_ethereum.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ solc --combined-json abi,bin contract.sol > contract.json
}
location, err := stackManager.DeployContract(filename, selectedContractName, 0, args[2:])
if err != nil {
return err
return fmt.Errorf("%s. usage: %s deploy <stack_name> <filename> <channel> <chaincode> <version>", err.Error(), ExecFileName)
}
fmt.Print(location)
return nil
Expand Down
2 changes: 1 addition & 1 deletion cmd/deploy_fabric.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ var deployFabricCmd = &cobra.Command{
}
contractAddress, err := stackManager.DeployContract(filename, filename, 0, args[2:])
if err != nil {
return err
return fmt.Errorf("%s. usage: %s deploy <stack_name> <filename> <channel> <chaincode> <version>", err.Error(), ExecFileName)
}
fmt.Print(contractAddress)
return nil
Expand Down
2 changes: 1 addition & 1 deletion cmd/ps.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ var psCmd = &cobra.Command{
if contains(allStacks, strings.TrimSpace(stackName)) {
namedStacks = append(namedStacks, stackName)
} else {
fmt.Printf("stack name - %s, is not present on your local machine. Run `ff ls` to see all available stacks.\n", stackName)
fmt.Printf("stack name - %s, is not present on your local machine. Run `%s ls` to see all available stacks.\n", stackName, ExecFileName)
}
}

Expand Down
7 changes: 5 additions & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ var logger log.Logger = &log.StdoutLogger{
LogLevel: log.Debug,
}

// name of the executable, this is for the help messages
var ExecFileName string = os.Args[0]

func GetFireflyASCIIArt() string {
s := ""
s += "\u001b[33m _______ ________ \u001b[0m\n" // yellow
Expand All @@ -53,7 +56,7 @@ func GetFireflyASCIIArt() string {

// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "ff",
Use: ExecFileName,
Short: "FireFly CLI is a developer tool used to manage local development stacks",
Long: GetFireflyASCIIArt() + `
FireFly CLI is a developer tool used to manage local development stacks
Expand All @@ -62,7 +65,7 @@ This tool automates creation of stacks with many infrastructure components which
would otherwise be a time consuming manual task. It also wraps docker compose
commands to manage the lifecycle of stacks.
To get started run: ff init
To get started run: ` + ExecFileName + ` init
Optional: Set FIREFLY_HOME env variable for FireFly stack configuration path.
`,
PersistentPreRun: func(cmd *cobra.Command, args []string) {
Expand Down
9 changes: 6 additions & 3 deletions cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,12 @@ import (
var shortened = false
var output = "json"

var BuildDate string // set by go-releaser
var BuildCommit string // set by go-releaser
var BuildVersionOverride string // set by go-releaser
// set by go-releaser
var (
BuildDate string
BuildCommit string
BuildVersionOverride string
)

// Info creates a formattable struct for version output
type Info struct {
Expand Down
10 changes: 5 additions & 5 deletions internal/blockchain/fabric/fabric_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -522,11 +522,11 @@ func (p *FabricProvider) DeployContract(filename, contractName, instanceName str
}
switch {
case len(extraArgs) < 1:
return nil, fmt.Errorf("channel not set. usage: ff deploy <stack_name> <filename> <channel> <chaincode> <version>")
return nil, fmt.Errorf("channel not set")
case len(extraArgs) < 2:
return nil, fmt.Errorf("chaincode not set. usage: ff deploy <stack_name> <filename> <channel> <chaincode> <version>")
return nil, fmt.Errorf("chaincode not set")
case len(extraArgs) < 3:
return nil, fmt.Errorf("version not set. usage: ff deploy <stack_name> <filename> <channel> <chaincode> <version>")
return nil, fmt.Errorf("version not set")
}
channel := extraArgs[0]
chaincode := extraArgs[1]
Expand Down Expand Up @@ -587,9 +587,9 @@ func (p *FabricProvider) CreateAccount(args []string) (interface{}, error) {
}
switch {
case len(args) < 1:
return "", fmt.Errorf("org name not set. usage: ff accounts create <stack_name> <org_name> <account_name>")
return "", fmt.Errorf("org name not set")
case len(args) < 2:
return "", fmt.Errorf("account name not set. usage: ff accounts create <stack_name> <org_name> <account_name>")
return "", fmt.Errorf("account name not set")
}
orgName := args[0]
accountName := args[1]
Expand Down

0 comments on commit 046b17f

Please sign in to comment.