Skip to content

Commit 90c2923

Browse files
committed
[fix] : Fixed -e and -a not being applied
1 parent 1f3e925 commit 90c2923

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

system/aur.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ _help() {
4141

4242
while getopts "a:cd:e:p:u:xh" arg; do
4343
case "${arg}" in
44-
a) aur_helper="${OPTARG}" ;;
44+
a) aur_helper_command="${OPTARG}" ;;
4545
c) pacman_debug=true ;;
46-
e) aur_helper_command="${OPTARG}" ;;
46+
e) aur_helper_package="${OPTARG}" ;;
4747
p) readarray -t pkglist < <(sed "s|,$||g" <<< "${OPTARG}" | tr "," "\n") ;;
4848
d) readarray -t aur_helper_depends < <(sed "s|,$||g" <<< "${OPTARG}" | tr "," "\n") ;;
4949
u) aur_username="${OPTARG}" ;;

0 commit comments

Comments
 (0)