This commit is contained in:
Bill Schnurr 2023-08-25 16:36:55 -07:00 коммит произвёл GitHub
Родитель 685de7262b
Коммит a19e16bb54
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -248,7 +248,7 @@ namespace Microsoft.PythonTools.Infrastructure {
);
}
var psi = new ProcessStartInfo(filename);
var psi = new ProcessStartInfo(filename); // CodeQL [SM00406] Code ql is complaining, but this is a utility class that is called with many different file names.
if (quoteArgs) {
psi.Arguments = string.Join(" ",
arguments.Where(a => a != null).Select(QuoteSingleArgument));