summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2013-04-06 18:43:01 +0200
committerPierre Schmitz <pierre@archlinux.de>2013-04-06 18:43:01 +0200
commit71b15aafb64b8c8d032eab7d41e15c6e4f648c58 (patch)
tree2e13f3b85cddcee3a2ca6dfffa70ed5ffc43f063
parent4bcafd9768be4d1fefea2047ea1f34d8904eeb9e (diff)
Simplify update call as pacman does no longer support SyncFirst
-rw-r--r--mkarchroot.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkarchroot.in b/mkarchroot.in
index 454d789..9059cdb 100644
--- a/mkarchroot.in
+++ b/mkarchroot.in
@@ -38,7 +38,7 @@ usage() {
while getopts 'r:ufnhC:M:c:' arg; do
case "${arg}" in
r) RUN="$OPTARG" ;;
- u) RUN='/bin/sh -c "pacman -Syu --noconfirm && (pacman -Qqu >/dev/null && pacman -Su --noconfirm || exit 0)"' ;;
+ u) RUN='pacman -Syu --noconfirm' ;;
f) FORCE='y' ;;
C) pac_conf="$OPTARG" ;;
M) makepkg_conf="$OPTARG" ;;
@@ -128,7 +128,7 @@ chroot_lock () {
chroot_run() {
local dir=$1
shift
- eval systemd-nspawn -D "${dir}" "${mount_args[@]}" -- ${@} 2>/dev/null
+ systemd-nspawn -D "${dir}" "${mount_args[@]}" -- ${@} 2>/dev/null
}
# }}}