Skip to content

Commit 8b1db06

Browse files
committed
fix: Small changes at log
1 parent f127e72 commit 8b1db06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ for (const field of fields) {
2424
});
2525
}
2626

27-
console.log('Deploying to git...');
28-
console.log(`Cloning to ${config.folder}...`);
27+
console.log('Starting deploy to Git...');
28+
console.log(`Cloning the repository to "${config.folder}" folder...`);
2929
try {
3030
execSync(`git clone -b ${config.branch} ${config.repository} ${config.folder} 2>&1`, { cwd });
3131
} catch (e) {
3232
throw Error('Failed to clone.');
3333
}
3434

3535

36-
console.log(`Starting script ${config.script}...`);
36+
console.log(`Starting script "${config.script}"...`);
3737
console.log(execSync(`${config.script}`, { cwd }).toString('utf-8'));
3838

3939
console.log('Configuring and committing...');

0 commit comments

Comments
 (0)