Skip to content

Commit

Permalink
windows semicolon fix (#14372)
Browse files Browse the repository at this point in the history
  • Loading branch information
AmrutaKawade authored Feb 10, 2021
1 parent ba82109 commit d49d454
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Tasks/AzureMysqlDeploymentV1/sql/MysqlClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export class MysqlClient implements ISqlClient {
fileSourceArgument = " -e" + '"' + this._azureMysqlTaskParameter.getSqlInline() + '"';
}
else {
fileSourceArgument = ` -e "source ${packageUtility.PackageUtility.getPackagePath(this._azureMysqlTaskParameter.getSqlFile())};"`;
fileSourceArgument = ` -e "source ${packageUtility.PackageUtility.getPackagePath(this._azureMysqlTaskParameter.getSqlFile()).replace(/\\/g, '/')};"`;
}

return fileSourceArgument;
Expand Down
4 changes: 2 additions & 2 deletions Tasks/AzureMysqlDeploymentV1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"author": "Microsoft Corporation",
"version": {
"Major": 1,
"Minor": 182,
"Patch": 1
"Minor": 183,
"Patch": 0
},
"demands": [],
"minimumAgentVersion": "1.100.0",
Expand Down
4 changes: 2 additions & 2 deletions Tasks/AzureMysqlDeploymentV1/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"author": "Microsoft Corporation",
"version": {
"Major": 1,
"Minor": 182,
"Patch": 1
"Minor": 183,
"Patch": 0
},
"demands": [],
"minimumAgentVersion": "1.100.0",
Expand Down

0 comments on commit d49d454

Please sign in to comment.