We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd1f0da commit 5b32743Copy full SHA for 5b32743
1 file changed
internal/core/services/registry/oci.go
@@ -79,6 +79,11 @@ func (c *OciClient) Pull(dir string, artifact string) error {
79
return err
80
}
81
82
+ err = os.MkdirAll(dir, 0755)
83
+ if err != nil {
84
+ return fmt.Errorf("failed to create directory: %w", err)
85
+ }
86
+
87
fs, err := file.New(filepath.Join(dir))
88
89
if err != nil {
0 commit comments