Skip to content

Commit 3d9a0fb

Browse files
authored
Fix typo in ArtifactToolsUtilities (#354)
* fix typo in ArtifactToolsUtilities * re-adjusted version, casing
1 parent 27c16bd commit 3d9a0fb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

common-npm-packages/packaging-common/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common-npm-packages/packaging-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "azure-pipelines-tasks-packaging-common",
3-
"version": "3.241.1",
3+
"version": "3.242.0",
44
"description": "Azure Pipelines Packaging Tasks Common",
55
"scripts": {
66
"test": "mocha _build/Tests/L0.js",

common-npm-packages/packaging-common/universal/ArtifactToolUtilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import * as toollib from "azure-pipelines-tool-lib/tool";
1111
export function getArtifactToolLocation(dirName: string): string {
1212
let toolPath: string = path.join(dirName, "ArtifactTool.exe");
1313
if (tl.osType() !== "Windows_NT"){
14-
toolPath = path.join(dirName, "Artifacttool");
14+
toolPath = path.join(dirName, "artifacttool");
1515
}
1616
return toolPath;
1717
}

0 commit comments

Comments
 (0)