summarylogtreecommitdiffstats
path: root/get-commit-count.pl
diff options
context:
space:
mode:
Diffstat (limited to 'get-commit-count.pl')
-rwxr-xr-xget-commit-count.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/get-commit-count.pl b/get-commit-count.pl
deleted file mode 100755
index 68f6d4770025..000000000000
--- a/get-commit-count.pl
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-
-local $/;
-my $stdin = <STDIN>;
-
-my $regex = qr/<span class="num text-emphasized">\n +(\d+)\n +<\/span>\n +commits/p;
-
-if ( $stdin =~ /$regex/g ) {
- print "$1";
-}