Skip to content

Commit bb93448

Browse files
fix: incorrect number of -'s for ds
1 parent 4c51f38 commit bb93448

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

udroid/src/help_udroid.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ help_list() {
5252
echo "options:"
5353
echo " -h, --help show this help message and exit"
5454
echo " --size show size of each distro"
55-
echo " --download-size | -ds show download size of each distro"
55+
echo " --download-size | --ds show download size of each distro"
5656
echo " --path <path> path to look for distros"
5757
echo " --list-installed show only installed distros"
5858
}

udroid/src/udroid.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ list() {
745745
while [ $# -gt 0 ]; do
746746
case $1 in
747747
--size) size=true; shift 1;;
748-
--download-size | -ds) show_remote_download_size=true; shift 1;;
748+
--download-size | --ds) show_remote_download_size=true; shift 1;;
749749
--list-installed) show_installed_only=true; shift 1;;
750750
--path) path=$2; LOG "list(): looking in $path"; shift 2;;
751751
--help) help_list; exit 0;;

0 commit comments

Comments
 (0)