We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f2031c commit 1c4770bCopy full SHA for 1c4770b
turtle/src/main/kotlin/com/lordcodes/turtle/ShellScript.kt
@@ -8,7 +8,7 @@ import java.util.concurrent.TimeUnit
8
/**
9
* Create and run either built-in or specified shell commands.
10
*/
11
-class ShellScript internal constructor(workingDirectory: File? = null) {
+class ShellScript constructor(workingDirectory: File? = null) {
12
private val processBuilder = ProcessBuilder(listOf())
13
.directory(workingDirectory)
14
.redirectOutput(ProcessBuilder.Redirect.PIPE)
0 commit comments