You've already forked jenkins-lib
mirror of
https://github.com/firstBitMarksistskaya/jenkins-lib.git
synced 2025-08-25 20:09:25 +02:00
fix pids
This commit is contained in:
@@ -133,7 +133,7 @@ class Yaxunit implements Serializable {
|
||||
String pids
|
||||
|
||||
if (steps.isUnix()) {
|
||||
pids = steps.sh("pidof $name", false, true, 'UTF-8')
|
||||
pids = steps.sh("ps -aux | grep '$name' | awk '{print \$2}'", false, true, 'UTF-8')
|
||||
} else {
|
||||
pids = steps.bat("chcp 65001 > nul \nfor /f \"tokens=2\" %a in ('tasklist ^| findstr $name') do @echo %a", false, true, 'UTF-8')
|
||||
}
|
||||
|
Reference in New Issue
Block a user