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 2140d97 commit 5aae476Copy full SHA for 5aae476
src/action.rs
@@ -150,7 +150,7 @@ impl Action {
150
for path in paths {
151
if !path.exists() {
152
log::debug!("Creating CodeQL directory at `{}`", path.display());
153
- if std::fs::create_dir(&path).is_ok() {
+ if std::fs::create_dir_all(&path).is_ok() {
154
return Ok(path);
155
} else {
156
log::warn!("Failed to create CodeQL directory at `{}`", path.display());
0 commit comments