We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f127e72 commit 8b1db06Copy full SHA for 8b1db06
index.js
@@ -24,16 +24,16 @@ for (const field of fields) {
24
});
25
}
26
27
-console.log('Deploying to git...');
28
-console.log(`Cloning to ${config.folder}...`);
+console.log('Starting deploy to Git...');
+console.log(`Cloning the repository to "${config.folder}" folder...`);
29
try {
30
execSync(`git clone -b ${config.branch} ${config.repository} ${config.folder} 2>&1`, { cwd });
31
} catch (e) {
32
throw Error('Failed to clone.');
33
34
35
36
-console.log(`Starting script ${config.script}...`);
+console.log(`Starting script "${config.script}"...`);
37
console.log(execSync(`${config.script}`, { cwd }).toString('utf-8'));
38
39
console.log('Configuring and committing...');
0 commit comments