1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00

fix(cli): fix default template file path on Windows (#2024)

This commit is contained in:
Anthony Lapenna 2018-07-06 08:07:43 +02:00 committed by GitHub
parent 50020dae89
commit 7acaf4b35a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,5 +15,5 @@ const (
defaultSSLCertPath = "C:\\certs\\portainer.crt"
defaultSSLKeyPath = "C:\\certs\\portainer.key"
defaultSyncInterval = "60s"
defaultTemplateFile = "C:\\templates.json"
defaultTemplateFile = "/templates.json"
)