Quickfixes

This commit is contained in:
Chrysostomus 2017-02-22 22:16:04 +08:00
parent 3e38f5523a
commit 847a336923
3 changed files with 1 additions and 10 deletions

View File

@ -485,10 +485,6 @@ bios_bootloader() {
install_bootloader() {
check_mount
# Set the default PATH variable
arch_chroot "PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/core_perl" 2>$ERR
check_for_error "set PATH" "$?"
if [[ $SYSTEM == "BIOS" ]]; then
bios_bootloader
else

View File

@ -157,10 +157,6 @@ install_graphics_menu() {
config_base_menu() {
local PARENT="$FUNCNAME"
# Set the default PATH variable
arch_chroot "PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/core_perl" 2>$ERR
check_for_error check_for_error "$FUNCNAME" "$?"
submenu 8
DIALOG "$_ConfBseBody" --default-item ${HIGHLIGHT_SUB} --menu " $_ConfBseMenuTitle " \
0 0 8 \

View File

@ -356,6 +356,5 @@ inst_needed() {
# install a pkg in the chroot if not installed
check_pkg() {
arch_chroot "[[ ! $(pacman -Q $1 2>/dev/null) ]] && pacman -Sy --noconfirm $1" 2>$ERR
check_for_error "install missing pkg $1 to target." "$?"
[[ -e "/mnt/usr/bin/$1" ]] || echo "$1 is not installed." && echo && echo && echo "Press enter to continue" && read
}