From 7acaf4b35a87e64a42f8a340f83e38370bf0395f Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Fri, 6 Jul 2018 08:07:43 +0200 Subject: [PATCH] fix(cli): fix default template file path on Windows (#2024) --- api/cli/defaults_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/cli/defaults_windows.go b/api/cli/defaults_windows.go index fda74265a..5f74911e6 100644 --- a/api/cli/defaults_windows.go +++ b/api/cli/defaults_windows.go @@ -15,5 +15,5 @@ const ( defaultSSLCertPath = "C:\\certs\\portainer.crt" defaultSSLKeyPath = "C:\\certs\\portainer.key" defaultSyncInterval = "60s" - defaultTemplateFile = "C:\\templates.json" + defaultTemplateFile = "/templates.json" )