1
0
Fork 0

object shorthand syntax

...is an abomination, but I don't make the rules =P
pull/22/head
Matt Cooper 2019-06-25 07:19:19 -04:00
parent 9b0b345617
commit b8a0fd6e78
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ export function getInput(name: string, options?: InputOptions): string {
* @param value value to store
*/
export function setOutput(name: string, value: string): void {
issueCommand('set-output', {name: name}, value)
issueCommand('set-output', {name}, value)
}
//-----------------------------------------------------------------------