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 0dd8df5 commit c6c8706Copy full SHA for c6c8706
udroid/src/udroid.sh
@@ -281,9 +281,9 @@ install_custom() {
281
while [[ $# -gt 0 ]]; do
282
case $1 in
283
--file)
284
- file=$2; shift ;;
+ file=$2; shift 2 ;;
285
--name)
286
- name=$2; shift ;;
+ name=$2; shift 2 ;;
287
*)
288
EDIE "unkown option $1"
289
;;
@@ -298,7 +298,7 @@ install_custom() {
298
}
299
300
[[ ! -f $file ]] && {
301
- EDIE "file $file not found"
+ EDIE "file $file not found - try provide full path of file"
302
303
304
[[ -d $DEFAULT_FS_INSTALL_DIR/$name ]] && {
@@ -989,7 +989,7 @@ list() {
989
echo "\`\`\`"
990
fi
991
992
- echo ""
+ echo ""
993
} >> $tempfile
994
995
g_format $tempfile
0 commit comments