blob: 6cd65fd10d88558cb6e44b639224c11cfb80953a (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
if [ -r "$1" ]; then
while IFS=': ' read -r p_dest p_file; do
[[ "${p_dest}" =~ $2 ]] && \
patch -fd "${p_dest}" -p1 < "/root/fuel/mcp/patches/${p_file}"
done < "$1"
fi
|