Skip to content

Commit

Permalink
Test validation failures
Browse files Browse the repository at this point in the history
  • Loading branch information
snehapar9 committed Nov 6, 2023
1 parent e8a0560 commit fb20d01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion azurecontainerapps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ export class azurecontainerapps {
if (this.useCliToBuildAndPushImage && !this.util.isNullOrEmpty(this.appSourcePath)) {
this.commandLineArgs.push(`--source ${this.appSourcePath}`);
if (!this.util.isNullOrEmpty(this.location)) {
this.commandLineArgs.push(`--location ${this.location}`);
this.commandLineArgs.push(`-l ${this.location}`);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ var azurecontainerapps = /** @class */ (function () {
if (this.useCliToBuildAndPushImage && !this.util.isNullOrEmpty(this.appSourcePath)) {
this.commandLineArgs.push("--source " + this.appSourcePath);
if (!this.util.isNullOrEmpty(this.location)) {
this.commandLineArgs.push("--location " + this.location);
this.commandLineArgs.push("-l " + this.location);
}
}
};
Expand Down

0 comments on commit fb20d01

Please sign in to comment.