mirror of
https://github.com/github/codeql.git
synced 2026-05-04 13:15:21 +02:00
Merge pull request #15063 from hvitved/csharp/use-scratch-dir
C#: Use `CODEQL_EXTRACTOR_CSHARP_SCRATCH_DIR` instead of `Path.GetTempPath`
This commit is contained in:
@@ -48,7 +48,7 @@ namespace Semmle.Extraction
|
||||
|
||||
writerLazy = new Lazy<StreamWriter>(() =>
|
||||
{
|
||||
var tempPath = trap ?? Path.GetTempPath();
|
||||
var tempPath = trap ?? FileUtils.GetTemporaryWorkingDirectory(out var _);
|
||||
|
||||
do
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user