diff --git a/internal/utils/filesystem.go b/internal/utils/filesystem.go index dccf610..338960e 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.MkdirAll(path, 0755) + return os.Mkdir(path, 0755) } func CreateDirIfNotExists(path string) error { diff --git a/target/playbookctl b/target/playbookctl index 087f727..83bf51b 100755 Binary files a/target/playbookctl and b/target/playbookctl differ