Remove unused argument placer
This commit is contained in:
parent
3f604c5087
commit
4415978ac6
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ func setup() {
|
|||
var doc *os.File
|
||||
var out string = path.Join(os.TempDir(), "surreal.key")
|
||||
if doc, err = os.Create(out); err != nil {
|
||||
log.Fatalf("Can not decode PEM encoded private key into %s: %s", out)
|
||||
log.Fatalf("Can not decode PEM encoded private key into %s", out)
|
||||
}
|
||||
doc.Write([]byte(opts.Cert.Key))
|
||||
doc.Close()
|
||||
|
|
Loading…
Reference in a new issue