Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
thedrlambda committed Feb 26, 2024
1 parent cd6181a commit 7ac4d7f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
## Fixes and improvements
-

# 2.1.3
## Fixes and improvements
- Fix `register` bug

# 2.1.2
## Fixes and improvements
- Fix display of english date time in `queue` and `key`
Expand Down
Binary file modified dist/windows.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@merrymake/cli",
"version": "2.1.2",
"version": "2.1.3",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion questions.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ function register() {
text: "Manually add key",
action: () => register_manual(),
});
if (keyfiles.includes("merrymake")) {
if (!keyfiles.includes("merrymake")) {
keys.push({
long: "new",
short: "n",
Expand Down
2 changes: 1 addition & 1 deletion questions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ async function register() {
text: "Manually add key",
action: () => register_manual(),
});
if (keyfiles.includes("merrymake")) {
if (!keyfiles.includes("merrymake")) {
keys.push({
long: "new",
short: "n",
Expand Down

0 comments on commit 7ac4d7f

Please sign in to comment.