Skip to content

Commit 74b799d

Browse files
authored
Fix casing inconsistency in UniversalPackagesV0 tool cache location (#315)
1 parent af3ddf3 commit 74b799d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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.236.0",
3+
"version": "3.239.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ 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
}
1818

1919
function _createExtractFolder(dest?: string): string {
2020
if (!dest) {
2121
// create a temp dir
22-
dest = path.join(tl.getVariable("Agent.TempDirectory"), "artifactTool");
22+
dest = path.join(tl.getVariable("Agent.TempDirectory"), "ArtifactTool");
2323
}
2424
tl.mkdirP(dest);
2525
return dest;

0 commit comments

Comments
 (0)