aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
Diffstat (limited to 'libexec')
-rwxr-xr-xlibexec/git-deli-blames.awk21
1 files changed, 0 insertions, 21 deletions
diff --git a/libexec/git-deli-blames.awk b/libexec/git-deli-blames.awk
deleted file mode 100755
index ff817f1..0000000
--- a/libexec/git-deli-blames.awk
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env gawk
-
-BEGIN {
- file="";
- ranges="";
-}
-
-match($0, /^\+\+\+ b\/(.+)$/, matched) {
- if(ranges!="") print(ranges, "--", file);
- file=matched[1];
- ranges="";
-}
-
-match($0, /^@@ -([0-9]+),([0-9]+) /, matched) && file!="" {
- if(matched[2]!="0")
- ranges = ranges " -L " matched[1] ",+" matched[2];
-}
-
-END {
- if(ranges!="") print(ranges, "--", file);
-}