htn-tunnel 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/install.js +2 -1
- package/package.json +1 -1
package/lib/install.js
CHANGED
|
@@ -5,7 +5,8 @@ const os = require("os");
|
|
|
5
5
|
const https = require("https");
|
|
6
6
|
const { execSync } = require("child_process");
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
// Binary version from GitHub Releases (may differ from npm package version).
|
|
9
|
+
const VERSION = "0.2.0";
|
|
9
10
|
const REPO = "nhh0718/htn-tunnel";
|
|
10
11
|
|
|
11
12
|
const platform = os.platform(); // darwin, linux, win32
|