This commit is contained in:
James Pogran 2022-04-27 10:43:51 -04:00
parent 02e010afee
commit 4e76b9133b
2 changed files with 4 additions and 4 deletions

4
dist/index1.js vendored
View file

@ -3040,7 +3040,7 @@ async function checkTerraform () {
return io.which(pathToCLI, check);
}
async () => {
(async () => {
// This will fail if Terraform isn't found, which is what we want
await checkTerraform();
@ -3079,7 +3079,7 @@ async () => {
// A non-zero exitCode is considered an error
core.setFailed(`Terraform exited with code ${exitCode}.`);
};
})();
})();

View file

@ -12,7 +12,7 @@ async function checkTerraform () {
return io.which(pathToCLI, check);
}
async () => {
(async () => {
// This will fail if Terraform isn't found, which is what we want
await checkTerraform();
@ -51,4 +51,4 @@ async () => {
// A non-zero exitCode is considered an error
core.setFailed(`Terraform exited with code ${exitCode}.`);
};
})();