Compare commits

...

2 Commits

Author SHA1 Message Date
c2a6a8fbe2
prepare release v0.1.5
All checks were successful
Create Release / build (push) Successful in 38s
2023-10-05 20:49:21 +02:00
026dc9d765
fix vault path 2023-10-05 20:49:07 +02:00
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
# 0.1.5 / 2023-10-05
* fix vault path
# 0.1.4 / 2023-10-05
* fix order of actions

View File

@ -59,7 +59,7 @@ func main() {
out.Close()
resp.Body.Close()
cmd := exec.Command("vault")
cmd := exec.Command("./vault")
if err := cmd.Run(); err != nil {
log.Panicf("error executing: %s", err)
}