Skip to content

Commit 6c548b1

Browse files
Remove commented-out git command execution in runGitCommand function
1 parent 8e9c905 commit 6c548b1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

build-logic/src/main/kotlin/extensions.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ fun Project.branchName(): String {
3535

3636
fun Project.runGitCommand(args: List<String>): String {
3737
val byteOut = ByteArrayOutputStream()
38-
exec {
39-
commandLine = listOf("git") + args
40-
standardOutput = byteOut
41-
}
38+
// exec {
39+
// commandLine = listOf("git") + args
40+
// standardOutput = byteOut
41+
// }
4242
return byteOut.toString(Charsets.UTF_8.name()).trim()
4343
}

0 commit comments

Comments
 (0)