Skip to content
This repository has been archived by the owner on Nov 15, 2021. It is now read-only.

Commit

Permalink
Fixed old message prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
leo committed Feb 8, 2018
1 parent 53f8abd commit 6768672
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/spinner.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const { isTTY } = process.stdout

exports.create = text => {
if (!isTTY) {
console.log(`[pack] ${text}`)
console.log(`[neutron] ${text}`)
return
}

Expand All @@ -29,7 +29,7 @@ exports.create = text => {

exports.clear = (message, isError) => {
if (!isTTY) {
console.log(`[pack] ${message}`)
console.log(`[neutron] ${message}`)
return
}

Expand Down

0 comments on commit 6768672

Please sign in to comment.