diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2010-08-16 21:30:44 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-08-16 21:30:44 +0200 |
commit | cfddde22be8c9c1ec03531ecbca9e594464efec8 (patch) | |
tree | cef6baa48406ee30c37407481d7885b404e4ae1b /mkarchroot | |
parent | f7b67c25ff4a3f1f290c29a70500292344c59a1e (diff) | |
download | devtools32-cfddde22be8c9c1ec03531ecbca9e594464efec8.tar.xz |
Fix typo
Diffstat (limited to 'mkarchroot')
-rwxr-xr-x | mkarchroot | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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}" |