blob: d75edd5278ace7dad85d0759199bc54fa2dfc229 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh -ef
# Fetch repositories
if [ -f ./cpt-lib ]; then . ./cpt-lib; else . cpt-lib; fi
case "$1" in
--help|-h) out "usage: ${0##*/}"; exit 1 ;;
--version|-v) version ;;
esac
pkg_fetch
|