1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2025-08-25 20:09:25 +02:00
This commit is contained in:
Dima
2024-09-02 17:02:10 +03:00
parent a7e4d3b290
commit ea2b403652

View File

@@ -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')
}