Branch
Hash :
559f6ee1
Author :
Thomas de Grivel
Date :
2023-02-18T17:37:42
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
#!/bin/sh
set -e -o pipefail
# shpkg
: ${SHPKG_DIR:=~/shpkg}
. "${SHPKG_DIR}/etc/shpkg/profile"
. "${SHPKG_DIR}/share/shpkg/shpkg.subr"
if [ "x$1" = "x-qqq" ]; then
export SHPKG_VERBOSE=0
shift
elif [ "x$1" = "x-qq" ]; then
export SHPKG_VERBOSE=1
shift
elif [ "x$1" = "x-q" ]; then
export SHPKG_VERBOSE=2
shift
fi
shpkg_config
verbose 2 shpkg_lock shpkg_ci.lock
verbose 2 shpkg_upgrade
if [ "x$1" = "x--clean" ]; then
verbose 1 rm -rf "${SHPKG_CI_DIR}"
exit
elif [ "x$1" = "x--upgrade" ]; then
exit
fi
shpkg_log shpkg_ci shpkg_ci_main "$@"