Skip to content

Instantly share code, notes, and snippets.

Created February 5, 2013 09:27
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/4713306 to your computer and use it in GitHub Desktop.
Save anonymous/4713306 to your computer and use it in GitHub Desktop.
diff --git a/PKGBUILD b/PKGBUILD
index dad2274..f2fed80 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -201,7 +201,13 @@ 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"
+ if [[ $? -eq 0 ]]; then
+ git apply "$i"
+ else
+ error "Applying ${i##*/} failed" && return 1
+ fi
+ git commit -a -m "Applied $i"
done
shopt -u nullglob
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment