blob: b0dbc1d26ed48ce15488fb6a2e9f96e273f9132a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh -ef
# Fetch repositories
# shellcheck disable=1091
if command -v cpt-lib >/dev/null; then . cpt-lib; else . ../lib.sh; fi
case "$1" in
--help|-h) out "usage: ${0##*/}"; exit 1 ;;
--version|-v) version ;;
esac
pkg_fetch
|