ref: 5867cb5a92ba7bda5c559b0a7b86d2bdac10f474
parent: 7d3dfba84b52ce8f33cc77380e3cc4c586a35201
author: Jelmer Tiete <[email protected]>
date: Sat Sep 10 21:48:31 EDT 2016
Fixe target path location check in jekyll import command
--- a/commands/import_jekyll.go
+++ b/commands/import_jekyll.go
@@ -81,7 +81,7 @@
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.")
}