Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Command (0.17 sec)

  1. .github/workflows/CheckBadMerge.groovy

            return new ExecResult(stderr: stderr, stdout: stdout, returnCode: returnCode)
        }
    
        static String getStdout(String command) {
            ExecResult execResult = exec(command)
    
            assert execResult.returnCode == 0: "$command failed with return code: $execResult"
            return execResult.stdout
        }
    
        static Future<String> readStreamAsync(InputStream inputStream) {
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 19 10:35:44 GMT 2023
    - 6.5K bytes
    - Viewed (0)
Back to top