Commit 28140068 authored by Dave Reisner's avatar Dave Reisner
Browse files

makechroot: die if we encounter an unexpected option

parent bf7dc83b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,6 @@ orig_argv=("$@")

while getopts 'hcur:I:l:nTD:d:' arg; do
	case "$arg" in
		h) usage ;;
		c) clean_first=true ;;
		D) bindmounts_ro+=(--bind-ro="$OPTARG") ;;
		d) bindmounts_rw+=(--bind="$OPTARG") ;;
@@ -80,6 +79,7 @@ while getopts 'hcur:I:l:nTD:d:' arg; do
		l) copy="$OPTARG" ;;
		n) run_namcap=true; makepkg_args="$makepkg_args -i" ;;
		T) temp_chroot=true; copy+="-$$" ;;
		h|*) usage ;;
	esac
done