Browse Source

Swallow errors, just check if falsy

master
Leo Lamprecht 8 years ago
parent
commit
d51a6024c7
No known key found for this signature in database GPG Key ID: B08517883D5E0E10
  1. 4
      bin/now-deploy.js

4
bin/now-deploy.js

@ -222,7 +222,9 @@ async function sync(token) {
}
}, 500)
repo = await onGitHub(rawPath, debug)
try {
repo = await onGitHub(rawPath, debug)
} catch (err) {}
clearInterval(dots)
process.stdout.write('\n')

Loading…
Cancel
Save