diff --git a/usr/bin/archboot-quickinst.sh b/usr/bin/archboot-quickinst.sh index 92043355a..a5c902be7 100755 --- a/usr/bin/archboot-quickinst.sh +++ b/usr/bin/archboot-quickinst.sh @@ -51,7 +51,7 @@ _prepare_pacman() { _KEYRING="archlinux-keyring" [[ "$(uname -m)" == "aarch64" ]] && _KEYRING="${_KEYRING} archlinuxarm-keyring" #shellcheck disable=SC2086 - pacman -Sy ${PACMAN_CONF} --noconfirm --noprogressbar ${_KEYRING} || exit 1 + pacman -Sy ${_PACMAN_CONF} --noconfirm --noprogressbar ${_KEYRING} || exit 1 } # package_installation diff --git a/usr/bin/archboot-rsync-backup.sh b/usr/bin/archboot-rsync-backup.sh index 4e3e5230e..5a2f041cf 100755 --- a/usr/bin/archboot-rsync-backup.sh +++ b/usr/bin/archboot-rsync-backup.sh @@ -26,5 +26,5 @@ _BACKUPDESTINATION="${2}" _BACKUPDIR="${1}" rsync -aAXv --numeric-ids \ --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} \ -"${_BACKUPDIR}" "{_$BACKUPDESTINATION}" +"${_BACKUPDIR}" "${_BACKUPDESTINATION}"