Skip to content

Commit

Permalink
Use Directory.CreateDirectory instead of DirectoryUtility to create t…
Browse files Browse the repository at this point in the history
…he obj folder (#2774)
  • Loading branch information
nkolev92 committed Apr 5, 2019
1 parent ecbd614 commit e32a2ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ private static void PersistDGSpecFile(DependencyGraphSpec spec, RestoreRequest r
return;
}

DirectoryUtility.CreateSharedDirectory(Path.GetDirectoryName(dgPath));
Directory.CreateDirectory(Path.GetDirectoryName(dgPath));
log.LogVerbose($"Persisting no-op dg to {dgPath}");
spec.Save(dgPath);
}
Expand Down

0 comments on commit e32a2ea

Please sign in to comment.