We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf09d97 commit 6ff15f3Copy full SHA for 6ff15f3
1 file changed
jira_server/systemCommands.groovy
@@ -0,0 +1,7 @@
1
+def standardOutput = new StringBuilder()
2
+def standardError = new StringBuilder()
3
+def command = "mpc toggle"
4
+def process = command.execute()
5
+
6
+process.consumeProcessOutput(standardOutput, standardError)
7
+return standardOutput
0 commit comments