We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0398ba commit f127e72Copy full SHA for f127e72
index.js
@@ -28,7 +28,7 @@ console.log('Deploying to git...');
28
console.log(`Cloning to ${config.folder}...`);
29
try {
30
execSync(`git clone -b ${config.branch} ${config.repository} ${config.folder} 2>&1`, { cwd });
31
-} catch(e) {
+} catch (e) {
32
throw Error('Failed to clone.');
33
}
34
@@ -51,8 +51,8 @@ try {
51
cd ${config.folder} &&
52
git push ${config.repository} ${config.branch} 2>&1
53
`, { cwd });
54
55
- throw Error('Failed to push.')
+ throw Error('Failed to push.');
56
57
58
0 commit comments