Skip to content

Commit

Permalink
Fix typo in ArtifactToolsUtilities (#354)
Browse files Browse the repository at this point in the history
* fix typo in ArtifactToolsUtilities

* re-adjusted version, casing
  • Loading branch information
MicroTuld authored Jul 12, 2024
1 parent 27c16bd commit 3d9a0fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions common-npm-packages/packaging-common/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion common-npm-packages/packaging-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "azure-pipelines-tasks-packaging-common",
"version": "3.241.1",
"version": "3.242.0",
"description": "Azure Pipelines Packaging Tasks Common",
"scripts": {
"test": "mocha _build/Tests/L0.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import * as toollib from "azure-pipelines-tool-lib/tool";
export function getArtifactToolLocation(dirName: string): string {
let toolPath: string = path.join(dirName, "ArtifactTool.exe");
if (tl.osType() !== "Windows_NT"){
toolPath = path.join(dirName, "Artifacttool");
toolPath = path.join(dirName, "artifacttool");
}
return toolPath;
}
Expand Down

0 comments on commit 3d9a0fb

Please sign in to comment.