feat(jenkinsfile): use stdin instead

Signed-off-by: zontreck <tarapiccari@gmail.com>
This commit is contained in:
zontreck 2024-10-06 15:27:27 -07:00
parent ae9885585d
commit 3e4b148243

2
Jenkinsfile vendored
View file

@ -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."