Skip to content

Commit

Permalink
Merge pull request #56 from gruntwork-io/caitlin/patcher-0-11-0
Browse files Browse the repository at this point in the history
use patcher v0.11.0
  • Loading branch information
ceschae authored Dec 17, 2024
2 parents 50bff40 + a62f671 commit 4d93d93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13535,7 +13535,7 @@ const exec = __importStar(__nccwpck_require__(1514));
// Define constants
const GRUNTWORK_GITHUB_ORG = "gruntwork-io";
const PATCHER_GITHUB_REPO = "patcher-cli";
const PATCHER_VERSION = "v0.10.0";
const PATCHER_VERSION = "v0.11.0";
const TERRAPATCH_GITHUB_REPO = "terrapatch-cli";
const TERRAPATCH_VERSION = "v0.1.6";
const HCLEDIT_ORG = "minamijoyo";
Expand Down Expand Up @@ -13647,7 +13647,7 @@ function isPatcherCommandValid(command) {
return VALID_COMMANDS.includes(command);
}
function reportArgs(specFile, includeDirs, excludeDirs, workingDir, noColor) {
let args = ["report", NON_INTERACTIVE_FLAG, SKIP_CONTAINER_FLAG];
let args = ["report", SKIP_CONTAINER_FLAG];
if (specFile !== "") {
args = args.concat(`${OUTPUT_SPEC_FLAG}=${specFile}`);
}
Expand Down
4 changes: 2 additions & 2 deletions src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Api as GitHub } from "@octokit/plugin-rest-endpoint-methods/dist-types/

const GRUNTWORK_GITHUB_ORG = "gruntwork-io";
const PATCHER_GITHUB_REPO = "patcher-cli";
const PATCHER_VERSION = "v0.10.0";
const PATCHER_VERSION = "v0.11.0";
const TERRAPATCH_GITHUB_REPO = "terrapatch-cli";
const TERRAPATCH_VERSION = "v0.1.6";

Expand Down Expand Up @@ -195,7 +195,7 @@ function reportArgs(
workingDir: string,
noColor: boolean
): string[] {
let args = ["report", NON_INTERACTIVE_FLAG, SKIP_CONTAINER_FLAG];
let args = ["report", SKIP_CONTAINER_FLAG];

if (specFile !== "") {
args = args.concat(`${OUTPUT_SPEC_FLAG}=${specFile}`);
Expand Down

0 comments on commit 4d93d93

Please sign in to comment.