Merge branch 'new_structure' of https://github.com/oberon2007/manjaro-architect into new_structure

This commit is contained in:
Bernhard Landauer 2017-03-02 04:04:50 +01:00
commit f8c755ec03
2 changed files with 6 additions and 4 deletions

View File

@ -634,7 +634,7 @@ install_acc_menu() {
# If something has been selected, install
if [[ $(cat ${PACKAGES}) != "" ]]; then
basestrap ${MOUNTPOINT} ${PACKAGES} 2>$ERR
check_for_error "$FUNCNAME" $?
check_for_error "$FUNCNAME" $? || return $?
fi
}
@ -711,7 +711,7 @@ edit_configs() {
if [[ $FILE == "${MOUNTPOINT}/etc/mkinitcpio.conf" ]]; then
dialog --backtitle "$VERSION - $SYSTEM ($ARCHI)" --yesno "${_MMRunMkinit}?" 0 0 && {
run_mkinitcpio 2>$ERR
check_for_error "run_mkinitcpio" "$?"
check_for_error "run_mkinitcpio" $?
}
fi
else

View File

@ -167,10 +167,12 @@ check_for_error() {
echo -e "$(date +%D\ %T) ERROR ${_msg} ${_fpath}" >> "${LOGFILE}"
if [[ "${_function_menu}" != "SKIP" ]]; then
DIALOG " $_ErrTitle " --msgbox "\n${_msg}\n" 0 0
# ($_function_menu)
# return error for return to parent menu
return $_err
fi
else
echo -e "$(date +%D\ %T) ${_msg}" >> "${LOGFILE}"
# add $FUNCNAME limit to 20 max for control if recursive
echo -e "$(date +%D\ %T) ${_msg} --${FUNCNAME[*]:1:20}" >> "${LOGFILE}"
fi
}