Skip to content

Commit

Permalink
fix: correctly replace url value (#14)
Browse files Browse the repository at this point in the history
* fix: correctly replace url value

* chore(release): bump package version to 1.2.6
  • Loading branch information
fabio-nettis authored Apr 15, 2024
1 parent 44c608b commit 7d35423
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const program = new Command();
const programVersion = version;
const programDescription = description;
const programName = Object.keys(bin)[0];
const helpText = `\nCheck out the our free and community driven API at ${repository.url.replace(".git", "")}`;
const helpText = `\nCheck out the our free and community driven API at ${repository.url.replace("/cli.git", "/api")}`;

program
.name(programName)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"license": "MIT",
"private": false,
"description": "A CLI for Helldivers 2: View the war progress without leaving your terminal! Powered by the HellHub API.",
"version": "1.2.5",
"version": "1.2.6",
"main": "build/index.mjs",
"types": "build/index.d.ts",
"keywords": [
Expand Down

0 comments on commit 7d35423

Please sign in to comment.