Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7af8011

Browse files
authoredAug 21, 2019
Merge pull request #6 from inextensodigital/fix-return-id-only-on-deployment-create
fix: return id only on deployment create
2 parents b19151a + 380b7d0 commit 7af8011

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎cmd/deployment.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ var deploymentCreateCmd = &cobra.Command{
112112
if err != nil {
113113
log.Fatal(err)
114114
}
115-
fmt.Printf("Successfully created deployment: %v\n", deployment.GetID())
115+
fmt.Printf("%v\n", deployment.GetID())
116116
},
117117
}
118118

0 commit comments

Comments
 (0)
Please sign in to comment.