Skip to content

Commit eb9d964

Browse files
committed
Fix install script
1 parent 99a2ae4 commit eb9d964

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/install.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ const pkg = require(path.resolve(__dirname, "..", "package.json"));
1111
const packageVersion = pkg.version;
1212
const url = `https://github.com/Prior99/native-image-diff/releases/download/${packageVersion}/${fileName.baseName}`;
1313

14+
console.info(`Downloading native-image-diff prebuilt binary from "${url}".`);
15+
16+
const destination = fs.createWriteStream(fileName.qualifiedName);
17+
1418
request.get(url)
1519
.on("error", err => { throw err; })
1620
.on("response", response => {

0 commit comments

Comments
 (0)