fix: ensure using defined variable

This commit is contained in:
Jonathan Camara 2022-04-27 16:07:48 -05:00
parent eb0d7e6261
commit 3ea2f56085
No known key found for this signature in database
GPG key ID: E87744B8CC664ACD
2 changed files with 4 additions and 4 deletions

View file

@ -39,8 +39,8 @@ async function downloadCLI (url) {
core.info(file);
} catch (error) {
core.error(err);
throw err;
core.error(error);
throw error;
}
core.debug('Extracting Terraform CLI zip file');