Skip to content

Commit 1c4770b

Browse files
authored
Make ShellScript constructor accessible (#99)
1 parent 4f2031c commit 1c4770b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

turtle/src/main/kotlin/com/lordcodes/turtle/ShellScript.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import java.util.concurrent.TimeUnit
88
/**
99
* Create and run either built-in or specified shell commands.
1010
*/
11-
class ShellScript internal constructor(workingDirectory: File? = null) {
11+
class ShellScript constructor(workingDirectory: File? = null) {
1212
private val processBuilder = ProcessBuilder(listOf())
1313
.directory(workingDirectory)
1414
.redirectOutput(ProcessBuilder.Redirect.PIPE)

0 commit comments

Comments
 (0)