Skip to content

Commit 9126705

Browse files
committed
REMOVE AGAIN.
1 parent d274a4a commit 9126705

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DependencyDirectory.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ public DependencyDirectory(string subfolderName, string userReportedDirectoryPur
2525
this.userReportedDirectoryPurpose = userReportedDirectoryPurpose;
2626

2727
string path;
28-
if (EnvironmentVariables.GetBuildlessDependencyDir() is string dir)
29-
{
30-
path = dir;
31-
attemptCleanup = false;
32-
}
33-
else
34-
{
35-
path = FileUtils.GetTemporaryWorkingDirectory(out _);
36-
attemptCleanup = true;
37-
}
28+
// if (EnvironmentVariables.GetBuildlessDependencyDir() is string dir)
29+
// {
30+
// path = dir;
31+
// attemptCleanup = false;
32+
// }
33+
// else
34+
// {
35+
path = FileUtils.GetTemporaryWorkingDirectory(out _);
36+
attemptCleanup = true;
37+
//}
3838
DirInfo = new DirectoryInfo(Path.Combine(path, subfolderName));
3939
DirInfo.Create();
4040
}

0 commit comments

Comments
 (0)