Skip to content

Commit

Permalink
Refactor and trigger pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
snehapar9 committed Sep 24, 2023
1 parent 15edd0a commit 8ffbb3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5701,7 +5701,7 @@ var Utility = /** @class */ (function () {
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, new Utility().executeAndthrowIfError('az', ["config", "set", "extension.use_dynamic_install=yes_without_prompt"])];
case 0: return [4 /*yield*/, this.executeAndthrowIfError('az', ["config", "set", "extension.use_dynamic_install=yes_without_prompt"])];
case 1:
_a.sent();
return [2 /*return*/];
Expand Down
2 changes: 1 addition & 1 deletion src/Utility.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class Utility {
* Azure Container Apps module being dynamically installed while it's still in preview.
*/
public async setAzureCliDynamicInstall() {
await new Utility().executeAndthrowIfError('az', [`config`, `set`, `extension.use_dynamic_install=yes_without_prompt`]);
await this.executeAndthrowIfError('az', [`config`, `set`, `extension.use_dynamic_install=yes_without_prompt`]);
}

/**
Expand Down

0 comments on commit 8ffbb3e

Please sign in to comment.