Skip to content

Commit

Permalink
[PowerShellV2] fix telemetry naming (#18980)
Browse files Browse the repository at this point in the history
* Fix telemetry name

* Bump task to 2.228.1
  • Loading branch information
KonstantinTyukalov authored Sep 18, 2023
1 parent 3e4ffed commit 39f4908
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Tasks/PowerShellV2/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export function validateFileArgs(inputArguments: string): void {
...expandTelemetry ?? {},
...sanitizeTelemetry ?? {}
};
emitTelemetry('TaskHub', 'BashV3', telemetry);
emitTelemetry('TaskHub', 'PowerShellV2', telemetry);
}
if (sanitizedArgs !== expandedArgs) {
const message = tl.loc('ScriptArgsSanitized');
Expand Down
2 changes: 1 addition & 1 deletion Tasks/PowerShellV2/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"version": {
"Major": 2,
"Minor": 228,
"Patch": 0
"Patch": 1
},
"releaseNotes": "Script task consistency. Added support for macOS and Linux.",
"minimumAgentVersion": "2.115.0",
Expand Down
2 changes: 1 addition & 1 deletion Tasks/PowerShellV2/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"version": {
"Major": 2,
"Minor": 228,
"Patch": 0
"Patch": 1
},
"releaseNotes": "ms-resource:loc.releaseNotes",
"minimumAgentVersion": "2.115.0",
Expand Down

0 comments on commit 39f4908

Please sign in to comment.