Skip to content

Commit 5db910d

Browse files
authored
chore: clear some unintended trailing spaces (#413)
Signed-off-by: Mattia Buccarella <[email protected]>
1 parent 0ff6fe6 commit 5db910d

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ lint:
4040

4141
.PHONY: test
4242
# All tests, both unit and integration
43-
test:
44-
go test ./...
43+
test:
44+
go test ./...
4545

4646
.PHONY: build_devel
4747
# build for development testing

app/cli/cmd/workflow_create.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,11 @@ func newWorkflowCreateCmd() *cobra.Command {
9191

9292
// Print the Robot Account Token
9393
if workflowRA.RobotAccountID != "" {
94-
fmt.Printf("\nThis is automatically generated Robot Account Token (ID: %s). Save the following token since it will not printed again: \n\n %s\n\n", workflowRA.RobotAccountID, workflowRA.RobotAccountKey)
94+
fmt.Printf(
95+
"\nThis is an automatically generated Robot Account Token (ID: %s). Save the following token since it will not printed again: \n\n%s\n\n",
96+
workflowRA.RobotAccountID,
97+
workflowRA.RobotAccountKey,
98+
)
9599
}
96100

97101
return nil

0 commit comments

Comments
 (0)