Skip to content

Commit f127e72

Browse files
committed
fix: Llinting errors
1 parent a0398ba commit f127e72

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ console.log('Deploying to git...');
2828
console.log(`Cloning to ${config.folder}...`);
2929
try {
3030
execSync(`git clone -b ${config.branch} ${config.repository} ${config.folder} 2>&1`, { cwd });
31-
} catch(e) {
31+
} catch (e) {
3232
throw Error('Failed to clone.');
3333
}
3434

@@ -51,8 +51,8 @@ try {
5151
cd ${config.folder} &&
5252
git push ${config.repository} ${config.branch} 2>&1
5353
`, { cwd });
54-
} catch(e) {
55-
throw Error('Failed to push.')
54+
} catch (e) {
55+
throw Error('Failed to push.');
5656
}
5757

5858

0 commit comments

Comments
 (0)