1
0
Fork 0
mirror of https://github.com/actions/toolkit synced 2025-05-09 16:43:02 +00:00

fix lint.

This commit is contained in:
Tingluo Huang 2019-09-19 22:18:51 -04:00
parent 4d15218252
commit 81b71dc6e6
2 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
import { issue, issueCommand} from './command'
import {issue, issueCommand} from './command'
import * as os from 'os'
import * as path from 'path'
@ -86,7 +86,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 }, value)
issueCommand('set-output', {name}, value)
}
//-----------------------------------------------------------------------
@ -190,7 +190,7 @@ export async function group<T>(name: string, fn: () => Promise<T>): Promise<T> {
* @param value value to store
*/
export function saveState(name: string, value: string): void {
issueCommand('save-state', { name }, value)
issueCommand('save-state', {name}, value)
}
/**