Skip to content

Commit

Permalink
fix: update log message
Browse files Browse the repository at this point in the history
  • Loading branch information
frankpagan committed Jan 4, 2024
1 parent 0b20ad3 commit 36e55af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ stream {
let test = await exec(`sudo nginx -t`);
if (test.stderr.includes('test is successful')) {
await exec(`sudo systemctl reload nginx`);
console.log('Nginx installed successfully');
console.log('Nginx installed successfully!');
} else {
console.log('Nginx config test failed')
}
Expand All @@ -149,7 +149,7 @@ stream {


} catch (error) {
console.error('Failed to Nginx: ', error);
console.error('Nginx failed to install: ', error);
}
}

Expand Down

0 comments on commit 36e55af

Please sign in to comment.