From 3e4b148243e374a5db9bce19665e31686b1f5581 Mon Sep 17 00:00:00 2001 From: zontreck Date: Sun, 6 Oct 2024 15:27:27 -0700 Subject: [PATCH] feat(jenkinsfile): use stdin instead Signed-off-by: zontreck --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f432b4f..be1553a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -61,7 +61,7 @@ pipeline { if [ -f "$patch_file" ] then echo "Applying $patch_file to ../phoenix-firestorm/" - patch -d ../phoenix-firestorm/ -Np1 -i "$patch_file" + patch -d ../phoenix-firestorm/ -Np1 < "$patch_file" fi done echo "All patches applied."