Skip to content

Commit b209aef

Browse files
authored
Merge pull request #20 from gfiedler/19-ArrayStoreException
Fix: ArrayStoreException
2 parents cfec968 + ee11104 commit b209aef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/groovy/ru/endlesscode/bukkitgradle/server/LinuxScript.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ ${buildRunCommand()}"""
2222
@Override
2323
List<String> getCommand() {
2424
String scriptName = getFileName()
25-
return ["chmod +x $scriptName", "&&", "./$scriptName", "&"]
25+
return ["sh", scriptName]
2626
}
2727
}

0 commit comments

Comments
 (0)