@ -283,7 +283,12 @@ async function sync(token) {
}
// Make sure that directory is deployable
await checkPath(path);
try {
} catch (err) {
error(err);
return;
if (!quiet) {
if (gitRepo.main) {
@ -2,5 +2,9 @@ const chalk = require('chalk');
// Prints an error message
module.exports = msg => {
if (msg instanceof Error) {
msg = msg.message;
console.error(`${chalk.red('> Error!')} ${msg}`);
};