aboutsummaryrefslogtreecommitdiff
path: root/src/cpt-update
blob: b3884e34204052dd2bfc9041dc6e1be26f36d32e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh -ef
# Check for updates

if [ -f ./cpt-lib ]; then . ./cpt-lib; else . cpt-lib; fi

parser_definition() {
    setup REST help:usage -- "usage: ${0##*/} [options]"
    msg -- '' 'Options:'
    flag  download_only -d --download                          -- "Only download updatable packages"
    flag  CPT_FETCH     -n --no-fetch  on:0 off:0 init:@export -- "Do not refresh the repositories"
    disp :pkg_fetch     -o --only-fetch                        -- "Only fetch repositories"
    global_options
}

eval "$(getoptions parser_definition parse "$0")"

parse "$@"
eval set -- "$REST"

create_cache

pkg_updates