Skip to content

Instantly share code, notes, and snippets.

Created February 5, 2013 10:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4713459 to your computer and use it in GitHub Desktop.
Save anonymous/4713459 to your computer and use it in GitHub Desktop.
diff --git a/PKGBUILD b/PKGBUILD
index dad2274..5a04b5c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -201,7 +201,9 @@ build() {
shopt -s nullglob
for i in "${patches[@]}" "$startdir/patches/"*; do
msg2 "Applying ${i##*/}..."
- patch -Np1 -i "$i" || (error "Applying ${i##*/} failed" && return 1)
+ git apply --check "$i"
+ [[ $? -eq 0 ]] && git apply "$i"
+ git commit -a -m "Applied $(basename $i)"
done
shopt -u nullglob
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment