We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2451b11 commit b49d045Copy full SHA for b49d045
compose/src/core/Runner.cs
@@ -83,6 +83,10 @@ private void WriteConfig()
83
// Ensure that the root directory maintains the correct permissions
84
ChmodRecursive(root, P0777, P0666);
85
86
+ // Create directories as needed
87
+ Directory.CreateDirectory(
88
+ Path.GetDirectoryName(path));
89
+
90
// Write the file and set its permissions
91
File.WriteAllText(path, c.Value);
92
0 commit comments