aboutsummaryrefslogtreecommitdiff
path: root/tools/cpt-download
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cpt-download')
-rwxr-xr-xtools/cpt-download16
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/cpt-download b/tools/cpt-download
deleted file mode 100755
index da0a692..0000000
--- a/tools/cpt-download
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh -ef
-# Download sources for the given package
-
-# shellcheck disable=1091
-if command -v cpt-lib >/dev/null; then . cpt-lib; else . ./cpt-lib; fi
-
-case "$1" in
- --help|-h)
- out "usage: ${0##*/} [pkg...]"
- exit 1
- ;;
- --version|-v) version ;;
- '') set -- "${PWD##*/}"; export CPT_PATH=${PWD%/*}:$CPT_PATH
-esac
-
-for pkg; do pkg_sources "$pkg"; done