raising not implemented earlier

This commit is contained in:
Bryan MacFarlane
2019-08-24 09:22:38 -04:00
parent 4ebc9007c0
commit a2078cf37c
2 changed files with 4 additions and 1 deletions

View File

@@ -46,6 +46,9 @@ 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.
// leaving the function but raising the error earlier
throw new Error("Not implemented.");
issueCommand('set-secret', {}, val)
}