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 15bb45b commit e8fb6f6Copy full SHA for e8fb6f6
scripts/udroid/udroid.sh
@@ -15,7 +15,7 @@ _login() {
15
mate) SUITE="mate" shift ;;
16
xfce|xfce4) SUITE="xfce4" shift ;;
17
kde) SUITE="kde" shift ;;
18
- *) l_login;;
+ *) l_login $*;;
19
esac
20
21
if [ $# -gt 0 ]; then
@@ -40,7 +40,7 @@ _login() {
40
l_login() {
41
if [ -f "${HOME}/.udroid/logindistro_cache" ]; then
42
if [ -s "${HOME}/.udroid/logindistro_cache" ]; then
43
- login "$(${HOME}/.udroid/logindistro_cache)"
+ login "$(${HOME}/.udroid/logindistro_cache)" $*
44
fi
45
else
46
_msg "login"
@@ -85,6 +85,6 @@ if [ $# -ge 0 ]; then
85
case $1 in
86
-l) shift _login $* ;;
87
-i|--install) shift _install $1 ;;
88
89
90
0 commit comments