fix lint.

This commit is contained in:
Tingluo Huang
2019-09-19 22:14:12 -04:00
parent b62614fa25
commit 4d15218252
2 changed files with 7 additions and 7 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'
@@ -37,7 +37,7 @@ export enum ExitCode {
*/
export function exportVariable(name: string, val: string): void {
process.env[name] = val
issueCommand('set-env', { name }, val)
issueCommand('set-env', {name}, val)
}
/**