about summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xxchroot5
1 files changed, 1 insertions, 4 deletions
diff --git a/xchroot b/xchroot
index 2c68623..f6d7954 100755
--- a/xchroot
+++ b/xchroot
@@ -10,10 +10,7 @@ if [ "$(id -u)" -ne 0 ]; then
 	fail 'xchroot needs to run as root'
 fi
 
-case "$1" in
-	/*) CHROOT=$1; shift;;
-	*) fail 'no absolute chroot dir given';;
-esac
+CHROOT=$1; shift
 
 [ -d "$CHROOT" ] || fail 'not a directory'
 [ -d "$CHROOT/dev" ] || fail 'no /dev in chroot'