MCPcopy Create free account
hub / github.com/Azure/powershell / issueCommand

Function issueCommand

lib/index.js:42–45  ·  view source on GitHub ↗

* Commands * * Command Format: * ::name key=value,key=value::message * * Examples: * ::warning::This is the message * ::set-env name=MY_VAR::some value

(command, properties, message)

Source from the content-addressed store, hash-verified

40 * ::set-env name=MY_VAR::some value
41 */
42function issueCommand(command, properties, message) {
43 const cmd = new Command(command, properties, message);
44 process.stdout.write(cmd.toString() + os.EOL);
45}
46exports.issueCommand = issueCommand;
47function issue(name, message = '') {
48 issueCommand(name, {}, message);

Callers 1

issueFunction · 0.85

Calls 2

toStringMethod · 0.95
writeMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…