summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2010-08-16 21:30:44 +0200
committerPierre Schmitz <pierre@archlinux.de>2010-08-16 21:30:44 +0200
commitcfddde22be8c9c1ec03531ecbca9e594464efec8 (patch)
treecef6baa48406ee30c37407481d7885b404e4ae1b
parentf7b67c25ff4a3f1f290c29a70500292344c59a1e (diff)
downloaddevtools-cfddde22be8c9c1ec03531ecbca9e594464efec8.tar.gz
devtools-cfddde22be8c9c1ec03531ecbca9e594464efec8.tar.xz
Fix typo
-rwxr-xr-xmkarchroot4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkarchroot b/mkarchroot
index 8f3a118..fa0dca5 100755
--- a/mkarchroot
+++ b/mkarchroot
@@ -85,10 +85,10 @@ chroot_mount() {
mount -o bind /dev "${working_dir}/dev"
[ -e "${working_dir}/dev/shm" ] || mkdir "${working_dir}/dev/shm"
- mount -t tmpfs shm /dev/shm "${working_dir}/dev/shm"
+ mount -t tmpfs shm "${working_dir}/dev/shm"
[ -e "${working_dir}/dev/pts" ] || mkdir "${working_dir}/dev/pts"
- mount -t devpts devpts /dev/pts "${working_dir}/dev/pts"
+ mount -t devpts devpts "${working_dir}/dev/pts"
[ -e "${cache_dir}" ] || mkdir -p "${cache_dir}"
[ -e "${working_dir}/${cache_dir}" ] || mkdir -p "${working_dir}/${cache_dir}"