Commit bced48ce authored by Jason Chu's avatar Jason Chu
Browse files

Allow optional params to makechrootpkg (to actually accept extra makepkg args)

parent e782cbd0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ usage ()
    exit 1
}

while getopts 'c:h' arg; do
while getopts ':c:h' arg; do
    case "${arg}" in
        c) chrootdir="$OPTARG" ;;
        h|?) usage ;;