Skip to content

Commit

Permalink
chore: update console message
Browse files Browse the repository at this point in the history
  • Loading branch information
adikari committed Oct 4, 2022
1 parent b7a71b9 commit 40df877
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions npm/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ const install = () => {
const tarFile = `${tmpdir}/${name}.tar.gz`;
const download = fs.createWriteStream(tarFile);

console.log(`downloading safebox from ${tarUrl}`);
console.log(`downloading safebox binary`);

req.on('response', res => {
if (res.statusCode !== 200) {
error(`Error downloading safebox binary from ${tarUrl}. HTTP Status Code: ${res.statusCode}`);
error(`Error downloading safebox binary. HTTP Status Code: ${res.statusCode}`);
}

req.pipe(download);
Expand Down

0 comments on commit 40df877

Please sign in to comment.