Skip to content

Commit

Permalink
fix: Llinting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
finom committed Sep 13, 2016
1 parent a0398ba commit f127e72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ console.log('Deploying to git...');
console.log(`Cloning to ${config.folder}...`);
try {
execSync(`git clone -b ${config.branch} ${config.repository} ${config.folder} 2>&1`, { cwd });
} catch(e) {
} catch (e) {
throw Error('Failed to clone.');
}

Expand All @@ -51,8 +51,8 @@ try {
cd ${config.folder} &&
git push ${config.repository} ${config.branch} 2>&1
`, { cwd });
} catch(e) {
throw Error('Failed to push.')
} catch (e) {
throw Error('Failed to push.');
}


Expand Down

0 comments on commit f127e72

Please sign in to comment.