aboutsummaryrefslogtreecommitdiffstats
path: root/mcp/patches/patch.sh
blob: aac0017b2fe2d4537a43e7bc711cc225751e3cfd (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