Skip to content

Commit

Permalink
Undo previous change and test
Browse files Browse the repository at this point in the history
  • Loading branch information
snehapar9 committed Sep 18, 2023
1 parent 0f54a68 commit a211aa7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4798,7 +4798,7 @@ var ContainerAppHelper = /** @class */ (function () {
_a.trys.push([1, 3, , 4]);
command_1 = "az containerapp create -n " + containerAppName + " -g " + resourceGroup + " -i " + imageToDeploy + " --environment " + environment;
optionalCmdArgs.forEach(function (val) {
command_1 += "" + val;
command_1 += " " + val;
});
return [4 /*yield*/, cpExec("" + command_1)];
case 2:
Expand Down
2 changes: 1 addition & 1 deletion src/ContainerAppHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ var ContainerAppHelper = /** @class */ (function () {
_a.trys.push([1, 3, , 4]);
command_1 = "az containerapp create -n " + containerAppName + " -g " + resourceGroup + " -i " + imageToDeploy + " --environment " + environment;
optionalCmdArgs.forEach(function (val) {
command_1 += "" + val;
command_1 += " " + val;
});
return [4 /*yield*/, cpExec("" + command_1)];
case 2:
Expand Down
2 changes: 1 addition & 1 deletion src/ContainerAppHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class ContainerAppHelper {
try {
let command = `az containerapp create -n ${containerAppName} -g ${resourceGroup} -i ${imageToDeploy} --environment ${environment}`;
optionalCmdArgs.forEach(function (val: string) {
command += `${val}`;
command += ` ${val}`;
});
await cpExec(`${command}`);
} catch (err) {
Expand Down

0 comments on commit a211aa7

Please sign in to comment.