From 5867cb5a92ba7bda5c559b0a7b86d2bdac10f474 Mon Sep 17 00:00:00 2001 From: Jelmer Tiete Date: Sun, 11 Sep 2016 01:48:31 -0700 Subject: [PATCH] Fixe target path location check in jekyll import command --- commands/import_jekyll.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/import_jekyll.go b/commands/import_jekyll.go index 20356f1e1..7c595d8a1 100644 --- a/commands/import_jekyll.go +++ b/commands/import_jekyll.go @@ -81,7 +81,7 @@ func importFromJekyll(cmd *cobra.Command, args []string) error { jww.INFO.Println("Import Jekyll from:", jekyllRoot, "to:", targetDir) - if strings.HasPrefix(targetDir, jekyllRoot) { + if strings.HasPrefix(filepath.Dir(targetDir), jekyllRoot) { return newUserError("Target path should not be inside the Jekyll root, aborting.") }