Skip to content

Commit 4532dfe

Browse files
committed
docs: 로깅 추가
1 parent 495bc61 commit 4532dfe

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

scripts/utils.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,11 @@ export function resolveGradleFilePath(workdir) {
6868
const kts = path.join(workdir, 'build.gradle.kts');
6969
const groovy = path.join(workdir, 'build.gradle');
7070
if (fs.existsSync(kts)) {
71+
console.info("gradle-kotlin 환경");
7172
return kts;
7273
}
7374
if (fs.existsSync(groovy)) {
75+
console.info("gradle-groovy 환경");
7476
return groovy;
7577
}
7678
return '';

0 commit comments

Comments
 (0)