@dcode-dev/d-code 0.1.0 → 0.1.1
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/d-code +1 -1
- package/package.json +1 -1
package/bin/d-code
CHANGED
|
@@ -9,7 +9,7 @@ const isWin = process.platform === "win32";
|
|
|
9
9
|
const bin = path.join(__dirname, isWin ? "d-code.exe" : "d-code-bin");
|
|
10
10
|
|
|
11
11
|
if (!fs.existsSync(bin)) {
|
|
12
|
-
console.error("[d-code] Binary not found. Try reinstalling: npm install -g @
|
|
12
|
+
console.error("[d-code] Binary not found. Try reinstalling: npm install -g @dcode-dev/d-code");
|
|
13
13
|
process.exit(1);
|
|
14
14
|
}
|
|
15
15
|
|