mirror of
https://github.com/github/codeql-action.git
synced 2026-05-03 04:10:10 +00:00
Use stdin for files to query attributes of
This commit is contained in:
Generated
+3
-2
@@ -87738,7 +87738,7 @@ var core7 = __toESM(require_core());
|
||||
var toolrunner2 = __toESM(require_toolrunner());
|
||||
var io3 = __toESM(require_io());
|
||||
var semver2 = __toESM(require_semver2());
|
||||
var runGitCommand = async function(workingDirectory, args, customErrorMessage) {
|
||||
var runGitCommand = async function(workingDirectory, args, customErrorMessage, options) {
|
||||
let stdout = "";
|
||||
let stderr = "";
|
||||
core7.debug(`Running git command: git ${args.join(" ")}`);
|
||||
@@ -87753,7 +87753,8 @@ var runGitCommand = async function(workingDirectory, args, customErrorMessage) {
|
||||
stderr += data.toString();
|
||||
}
|
||||
},
|
||||
cwd: workingDirectory
|
||||
cwd: workingDirectory,
|
||||
...options
|
||||
}).exec();
|
||||
return stdout;
|
||||
} catch (error3) {
|
||||
|
||||
Reference in New Issue
Block a user