summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-05-12 01:47:17 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-05-12 01:47:17 -0400
commitce51d919bacc5a47a43c586aa5dadfa90d2494cd (patch)
treea813c95c646e3de8c694fc526dabbb0b1c0d0844
parent2350871f1ec8cc5e8f48187a740eb574070320f3 (diff)
rm jh-mksource*
jh-mksource is now superfluous with makepkg 4.1 and librefetch
-rw-r--r--jh-mksource.help.txt2
-rw-r--r--jh-mksource.sh15
2 files changed, 0 insertions, 17 deletions
diff --git a/jh-mksource.help.txt b/jh-mksource.help.txt
deleted file mode 100644
index dba0cc1..0000000
--- a/jh-mksource.help.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-Usage: eval `@cmd@ mksource [ignore-file-list...]`
-Prints shell code that 1) runs mksource() 2) runs `@cmd@ checksource`
diff --git a/jh-mksource.sh b/jh-mksource.sh
deleted file mode 100644
index 31e40c7..0000000
--- a/jh-mksource.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-quote () {
- local quoted=${1//\'/\'\\\'\'};
- printf "'%s'" "$quoted"
-}
-
-quote_args() {
- for arg in "$@"; do
- quote "$arg"
- printf ' '
- done
-}
-
-echo "type mksource &>/dev/null && mksource; jh checksource $(quote_args "$@")"