Skip to content
Snippets Groups Projects
Commit c5cd72c0 authored by Pierre Schmitz's avatar Pierre Schmitz
Browse files

Remove no longer used option

parent 8bedb89f
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,6 @@ CHROOT_VERSION='v2'
FORCE='n'
RUN=''
NOCOPY='n'
USE_DEVTMPFS='n'
working_dir=''
......@@ -36,7 +35,7 @@ usage() {
exit 1
}
while getopts 'r:ufnhC:M:c:d' arg; do
while getopts 'r:ufnhC:M:c:' arg; do
case "${arg}" in
r) RUN="$OPTARG" ;;
u) RUN='/bin/sh -c "pacman -Syu --noconfirm && (pacman -Qqu >/dev/null && pacman -Su --noconfirm || exit 0)"' ;;
......@@ -45,7 +44,6 @@ while getopts 'r:ufnhC:M:c:d' arg; do
M) makepkg_conf="$OPTARG" ;;
n) NOCOPY='y' ;;
c) cache_dir="$OPTARG" ;;
d) USE_DEVTMPFS="y" ;;
h|?) usage 0 ;;
*) error "invalid argument '${arg}'"; usage ;;
esac
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment