Skip to content

Commit 8d24507

Browse files
committed
fix: npm binary wrapper
1 parent 509a89e commit 8d24507

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ A command-line tool for interacting with the X (formerly Twitter) API, supportin
1515

1616
## Installation
1717

18-
### Homebrew (macOS / Linux)
18+
### Homebrew (macOS)
1919
```bash
20-
brew install xdevplatform/tap/xurl
20+
brew install --cask xdevplatform/tap/xurl
2121
```
2222

2323
### npm

npm/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const http = require("http");
99

1010
const VERSION = require("./package.json").version;
1111
const REPO = "xdevplatform/xurl";
12-
const BIN_DIR = path.join(__dirname, "bin");
12+
const BIN_DIR = path.join(__dirname, "binary");
1313

1414
function getPlatform() {
1515
const platform = os.platform();

npm/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
},
1818
"files": [
1919
"bin/",
20+
"binary/",
2021
"install.js"
2122
]
2223
}

0 commit comments

Comments
 (0)