blob: 9b7d89ce6579fde6162c84da641842b18e4aec70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/bin/bash
#
# SPDX-License-Identifier: GPL-3.0-or-later
m4_include(lib/common.sh)
set -e
usage() {
local -r COMMAND=${BASH_SOURCE[0]##*/}
cat <<- _EOF_
Usage: ${COMMAND} [COMMAND] [OPTIONS]
Unified command-line frontend for devtools.
COMMANDS
diff Compare package files using different modes
repo Manage Git packaging repositories and their configuration
OPTIONS
-h, --help Show this help text
_EOF_
}
if (( $# < 1 )); then
usage
exit 1
fi
export _DEVTOOLS_COMMAND='pkgctl'
# command checking
while (( $# )); do
case $1 in
-h|--help)
usage
exit 0
;;
repo)
_DEVTOOLS_COMMAND+=" $1"
shift
pkgrepo "$@"
exit 0
;;
diff)
_DEVTOOLS_COMMAND+=" $1"
shift
diffpkg "$@"
exit 0
;;
*)
die "invalid command: %s" "$1"
;;
esac
done
|