diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-11-28 15:18:44 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-11-28 15:18:44 -0500 |
commit | fd1e5a426713715d9c0e3fabbfe0d8a20b629bad (patch) | |
tree | fb14943070f8271123412a03255c8021033eded8 /src/chroot-tools/librechroot | |
parent | 066c7716e69817af9e08782a7fbfc3dc2eb6356b (diff) |
chroot-tools: disable overriding CHROOTDIR at the command line
Diffstat (limited to 'src/chroot-tools/librechroot')
-rwxr-xr-x | src/chroot-tools/librechroot | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/chroot-tools/librechroot b/src/chroot-tools/librechroot index a5c5728..48e6cdc 100755 --- a/src/chroot-tools/librechroot +++ b/src/chroot-tools/librechroot @@ -136,7 +136,6 @@ usage() { echo '' echo 'Options:' echo ' Settings:' - echo " -d <CHROOTDIR> Use this dir instead of \`${CHROOTDIR}'" echo ' -l <copy> Use this as the chroot copy instead of basing it' echo ' on the username' echo ' Modes:' @@ -156,7 +155,6 @@ main() { local mode=enter while getopts 'hrcud:l:' arg; do case $arg in - d) CHROOTDIR=$OPTARG;; l) CHROOTCOPY=$OPTARG;; c) mode=clean_pacman;; |