aboutsummaryrefslogtreecommitdiffstats
path: root/.local/bin/freebsd-patch
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/freebsd-patch')
-rwxr-xr-x.local/bin/freebsd-patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/freebsd-patch b/.local/bin/freebsd-patch
index 6c1121b..83503e5 100755
--- a/.local/bin/freebsd-patch
+++ b/.local/bin/freebsd-patch
@@ -1,4 +1,4 @@
#!/bin/sh
for patch in $HOME/Documents/freebsd-patches/*.patch; do
- patch -d /usr/src -p1 < $patch
+ git -C /usr/src am < $patch
done