Correct support of remove command in pkg

Fixes #3681
This commit is contained in:
Guillermo Robles 2019-04-16 17:59:53 +02:00
parent 65cf281038
commit 78fc1f2328

View File

@ -36,7 +36,7 @@ case "$CMD" in
add|i*) assert_not_root; apt update; apt install $@;;
list-a*) apt list $@;;
list-i*) apt list --installed $@;;
re*) assert_not_root; apt install --reinstall $@;;
rei*) assert_not_root; apt install --reinstall $@;;
se*) assert_not_root; apt update; apt search $@;;
sh*) apt show $@;;
un*|rem*|rm|del*) assert_not_root; apt remove $@;;