set-env instead of set-variable

This commit is contained in:
Danny McCormick
2019-05-21 14:40:57 -04:00
parent ea0dd28ea7
commit b25c8772ed
2 changed files with 7 additions and 7 deletions

View File

@@ -20,7 +20,7 @@ export interface InputOptions {
*/
export function exportVariable(name: string, val: string) {
process.env[name] = val
intm.issueCommand('set-variable', {name}, val)
intm.issueCommand('set-env', {name}, val)
}
/**