We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92ee2d1 commit d787a5fCopy full SHA for d787a5f
udroid/src/udroid.sh
@@ -635,8 +635,8 @@ list() {
635
}
636
637
remove() {
638
- local _name
639
- local arg
+ local _name=""
+ local arg=""
640
local path=${DEFAULT_FS_INSTALL_DIR}
641
642
while [ $# -gt 0 ]; do
@@ -740,8 +740,8 @@ while [ $# -gt 0 ]; do
740
case $1 in
741
--install|-i) shift 1; install $@ ; break ;;
742
--login|-l) shift 1; login $@; break ;;
743
- --remove | --uninstall ) remove $@; break;;
744
- --reset | --reinstall ) _reset $@; break;;
+ --remove | --uninstall ) shift 1 ; remove $@; break;;
+ --reset | --reinstall ) shift 1 ; _reset $@; break;;
745
--list) shift 1; list $@; break ;;
746
*) echo "unkown option [$1]"; break ;;
747
esac
0 commit comments