Skip to content

Commit

Permalink
fix(readme): use proper userhome reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Ingwersaft authored Mar 9, 2020
1 parent e2298d3 commit 1121e8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {
vault {
vaultAddress = "http://localhost:8200"
vaultToken = "myroottoken" // don't do that in production code!
vaultTokenFilePath = "~/.vault-token" // from file is prefered over vaultToken
vaultTokenFilePath = "${System.getProperty("user.home")}/.vault-token" // from file is prefered over vaultToken
maxRetries = 2
retryIntervalMilliseconds = 200
}
Expand Down

0 comments on commit 1121e8f

Please sign in to comment.