Merge pull request #1330 from hashicorp/sethvargo/clarify_delete

Clarify delete operation
This commit is contained in:
Jeff Mitchell 2016-04-14 06:11:53 -04:00
commit bb0dd624e1
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ func (c *DeleteCommand) Run(args []string) int {
return 1
}
c.Ui.Output(fmt.Sprintf("Success! Deleted '%s'", path))
c.Ui.Output(fmt.Sprintf("Success! Deleted '%s' if it existed", path))
return 0
}

View File

@ -110,7 +110,7 @@ and delete it. We can do this with `vault delete`:
```
$ vault delete secret/hello
Success! Deleted 'secret/hello'
Success! Deleted 'secret/hello' if it existed
```
## Next