Skip to content

Commit

Permalink
[Fix] Spacing bug in additional params (#100)
Browse files Browse the repository at this point in the history
* Spacing bug in additional params

* New Dist

* debug

* New Dist

* New Dist
  • Loading branch information
t-dedah authored Apr 11, 2022
1 parent b7de7a2 commit c053f35
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/deploy/scope_managementgroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export async function DeployManagementGroupScope(azPath: string, region: string,

let azDeployParameters = validateParameters;
if(additionalArguments){
azDeployParameters += additionalArguments;
azDeployParameters += ` ${additionalArguments}`;
}

// configure exec to write the json output to a buffer
Expand Down
2 changes: 1 addition & 1 deletion src/deploy/scope_resourcegroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export async function DeployResourceGroupScope(azPath: string, resourceGroupName

let azDeployParameters = validateParameters;
if(additionalArguments){
azDeployParameters += additionalArguments;
azDeployParameters += ` ${additionalArguments}`;
}

// configure exec to write the json output to a buffer
Expand Down
2 changes: 1 addition & 1 deletion src/deploy/scope_subscription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export async function DeploySubscriptionScope(azPath: string, region: string, te

let azDeployParameters = validateParameters;
if(additionalArguments){
azDeployParameters += additionalArguments;
azDeployParameters += ` ${additionalArguments}`;
}

// configure exec to write the json output to a buffer
Expand Down

0 comments on commit c053f35

Please sign in to comment.