Skip to content

Commit

Permalink
Changing the names
Browse files Browse the repository at this point in the history
  • Loading branch information
sylviamclaughlin authored Nov 15, 2024
1 parent 4af10d2 commit 53b31d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@ const action = async () => {
const commands = [
{
key: "init",
exec: `${binary}${isTerragrunt && initRunAll ? " run-all" : ""} init -no-color ${
terraformInit ? terraformInit.join(" ") : ""
}`.trim(),
exec: `${binary}${isTerragrunt && initRunAll ? " run-all" : ""} init -no-color ${terraformInit ? terraformInit.join(" ") : ""
}`.trim(),
},
{
key: "validate",
Expand Down Expand Up @@ -88,7 +87,7 @@ const action = async () => {

// if not terragrunt and init-run-all is true, then notify the user that this command is only valid for terragrunt
if (!isTerragrunt && initRunAll) {
core.warning(
core.error(
"init-run-all is only valid when using terragrunt, skipping this option",
);
}
Expand Down
File renamed without changes.

0 comments on commit 53b31d6

Please sign in to comment.