Skip to content

Commit 2539324

Browse files
RyanCarlisledmjb
andauthored
Remove prefix from thv secret get (#1709)
Fixes #1683 --------- Co-authored-by: Don Browne <[email protected]>
1 parent ad01de7 commit 2539324

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/thv/app/secret.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ The secret must exist in your configured secrets provider, otherwise the command
217217
fmt.Fprintf(os.Stderr, "Failed to get secret %s: %v\n", name, err)
218218
return
219219
}
220-
fmt.Printf("Secret %s: %s\n", name, value)
220+
fmt.Printf("%s\n", value)
221221
},
222222
}
223223
}

0 commit comments

Comments
 (0)