summaryrefslogtreecommitdiff
path: root/packaging/Debian/debian/scripts/unpatch-source
blob: 81d51f7dd4e05d09dcd5fc014de13d5f21bc67f8 (plain)
1
2
3
4
5
6
7
#!/bin/sh -e

for patch in debian/patches/*.patch; do
	patch -p1 -R < $patch
done

exit 0