mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-27 13:33:37 +00:00
fix: ensure using defined variable
This commit is contained in:
parent
eb0d7e6261
commit
3ea2f56085
2 changed files with 4 additions and 4 deletions
4
dist/index.js
vendored
4
dist/index.js
vendored
|
|
@ -45,8 +45,8 @@ async function downloadCLI (url) {
|
||||||
core.info(file);
|
core.info(file);
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
core.error(err);
|
core.error(error);
|
||||||
throw err;
|
throw error;
|
||||||
}
|
}
|
||||||
|
|
||||||
core.debug('Extracting Terraform CLI zip file');
|
core.debug('Extracting Terraform CLI zip file');
|
||||||
|
|
|
||||||
|
|
@ -39,8 +39,8 @@ async function downloadCLI (url) {
|
||||||
core.info(file);
|
core.info(file);
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
core.error(err);
|
core.error(error);
|
||||||
throw err;
|
throw error;
|
||||||
}
|
}
|
||||||
|
|
||||||
core.debug('Extracting Terraform CLI zip file');
|
core.debug('Extracting Terraform CLI zip file');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue