1
0
Fork 0

lint fixes

pull/84/head
Bryan MacFarlane 2019-08-25 00:55:22 -04:00
parent 17a0aa40f3
commit 7cd421b8bc
1 changed files with 3 additions and 2 deletions

View File

@ -46,10 +46,11 @@ export function exportVariable(name: string, val: string): void {
*/
export function exportSecret(name: string, val: string): void {
exportVariable(name, val)
// the runner will error with not implemented.
// the runner will error with not implemented
// leaving the function but raising the error earlier
throw new Error("Not implemented.");
issueCommand('set-secret', {}, val)
throw new Error('Not implemented.')
}
/**