remote-term 0.1.0 → 0.1.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/bin/remote-term.cmd +1 -1
- package/install.js +1 -1
- package/package.json +1 -1
- package/bin/remote-term +0 -3
package/bin/remote-term.cmd
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
@echo off
|
|
2
|
-
"%~dp0\remote-term.exe" %*
|
|
2
|
+
"%~dp0\remote-term-binary.exe" %*
|
package/install.js
CHANGED
|
@@ -60,7 +60,7 @@ async function main() {
|
|
|
60
60
|
const url = getDownloadUrl(binaryName);
|
|
61
61
|
const binDir = path.join(__dirname, "bin");
|
|
62
62
|
const isWindows = process.platform === "win32";
|
|
63
|
-
const outputName = isWindows ? "remote-term.exe" : "remote-term";
|
|
63
|
+
const outputName = isWindows ? "remote-term-binary.exe" : "remote-term-binary";
|
|
64
64
|
const outputPath = path.join(binDir, outputName);
|
|
65
65
|
|
|
66
66
|
console.log(`Downloading remote-term v${VERSION} for ${process.platform}-${process.arch}...`);
|
package/package.json
CHANGED
package/bin/remote-term
DELETED