diff --git a/internal/utils/filesystem.go b/internal/utils/filesystem.go index 338960e..dccf610 100644 --- a/internal/utils/filesystem.go +++ b/internal/utils/filesystem.go @@ -10,7 +10,7 @@ func SaveStaticFile(path string, data []byte) error { } func CreateDir(path string) error { - return os.Mkdir(path, 0755) + return os.MkdirAll(path, 0755) } func CreateDirIfNotExists(path string) error { diff --git a/target/playbookctl b/target/playbookctl index 1688d38..087f727 100755 Binary files a/target/playbookctl and b/target/playbookctl differ