summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-01-19 10:45:19 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-01-19 10:45:19 -0500
commit897a0084bdd96b06198e699f9851ce0b89de409d (patch)
tree71be5b0680bc3312d5b77ac535f4c8e9a5d3123d
parent83a55baf27a6e6f3fa3e6772a6f1b63f4c5138d7 (diff)
libremakepkg: fix getopts string (I'm a dummy)
-rwxr-xr-xsrc/chroot-tools/libremakepkg2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chroot-tools/libremakepkg b/src/chroot-tools/libremakepkg
index dcc495c..f2dc537 100755
--- a/src/chroot-tools/libremakepkg
+++ b/src/chroot-tools/libremakepkg
@@ -177,7 +177,7 @@ main() {
local chroot=''
# Parse command line options ###########################################
- while getopts 'n:l:wrNRh' flag ; do
+ while getopts 'n:l:w:r:NRh' flag ; do
case "${flag}" in
n) if $INCHROOT; then err_chflag "$flag"; else
chroot=$OPTARG; fi;;