From 7dc87319c15131123d5f82ad432c6d0924f907b9 Mon Sep 17 00:00:00 2001 From: Dustin Falgout Date: Sat, 18 Jun 2016 00:30:25 -0500 Subject: [PATCH] fix last remaining issues (hopefully) --- dist/antergos-iso | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dist/antergos-iso b/dist/antergos-iso index e01b470..3eb86aa 100644 --- a/dist/antergos-iso +++ b/dist/antergos-iso @@ -55,8 +55,8 @@ hotfix_setup_environment() { [[ -f /tmp/.setup-running ]] && CNCHI_STARTED='True' [[ -d /home/antergos/.config/openbox ]] && IS_MINIMAL='True' - alias pacSyy='sudo pacman -Syy --noconfirm' - alias pacS='sudo pacman -S --noconfirm' + alias pacSyy='sudo pacman -Syy --noconfirm --force' + alias pacS='sudo pacman -S --noconfirm --force' alias packey_populate='sudo pacman-key --populate archlinux antergos' alias packey_init='sudo pacman-key --init' @@ -151,10 +151,11 @@ hotfix_run_when_connected() { if [[ ${INSTALL_CNCHI} = 'True' ]]; then notify_user "${INSTALLING_UPDATES}" "${INSTALLING_UPDATES_SUB}" stop_cnchi - ${BASH_ALIASES[pacS]} --force cnchi && LEVEL='normal'; _notify_user "${UPDATE_COMPLETE}" "${UPDATE_COMPLETE_SUB}" + ${BASH_ALIASES[pacS]} cnchi && LEVEL='normal'; _notify_user "${UPDATE_COMPLETE}" "${UPDATE_COMPLETE_SUB}" start_cnchi && CNCHI_RESTARTED='True' else - LEVEL='normal'; _notify_no_updates + LEVEL='normal'; notify_no_updates + [[ -f /tmp/.setup-running ]] || start_cnchi fi }