Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Removed undefined variable reference (#1143)
  • Loading branch information
leo committed Feb 26, 2018
1 parent 4391dae commit d96473f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/sh/commands/deploy.js
Expand Up @@ -653,7 +653,7 @@ async function sync({ token, config: { currentTeam, user }, showMessage }) {

if (!proceed) {
if (typeof proceed === 'undefined') {
const message = `${story} If you agree with that, please run again with ${cmd('--public')}.`
const message = `If you agree with that, please run again with ${cmd('--public')}.`
console.error(error(message))

await exit(1)
Expand Down

0 comments on commit d96473f

Please sign in to comment.