| here is my simple pipeline script running against 2.32.3. This time is has differente error ( nohub not found) [pipeline-test] Running shell script env: nohup: No such file or directory <code> pipeline { agent { docker { image "maven" } } stages { stage("run") { steps { withMaven( mavenSettingsConfig: 'maven-user', globalMavenSettingsConfig: 'maven-global', mavenLocalRepo: '.repository') { sh "echo hello" } } } } } <code> |