parent
35c6af50e7
commit
4230c23f2c
1 changed files with 8 additions and 8 deletions
16
cd.sh
16
cd.sh
|
@ -168,6 +168,14 @@ cd_set_https_verification_on () {
|
|||
esac
|
||||
}
|
||||
|
||||
cd_upgrade_packages () {
|
||||
cd_step "${FUNCNAME}"
|
||||
case "${CD_OS_NAME}" in
|
||||
'debian') apt-get upgrade --yes || exit ;;
|
||||
*) exit 1 ;;
|
||||
esac
|
||||
}
|
||||
|
||||
cd_install_git () {
|
||||
cd_step "${FUNCNAME}"
|
||||
case "${CD_OS_NAME}" in
|
||||
|
@ -184,14 +192,6 @@ cd_install_python () {
|
|||
esac
|
||||
}
|
||||
|
||||
cd_upgrade_packages () {
|
||||
cd_step "${FUNCNAME}"
|
||||
case "${CD_OS_NAME}" in
|
||||
'debian') apt-get upgrade --yes || exit ;;
|
||||
*) exit 1 ;;
|
||||
esac
|
||||
}
|
||||
|
||||
cd_clean_packages_cache () {
|
||||
cd_step "${FUNCNAME}"
|
||||
case "${CD_OS_NAME}" in
|
||||
|
|
Loading…
Reference in a new issue