Skip to content

Commit 497b43c

Browse files
fix incorrect argument placement for msg functions
1 parent 97236f9 commit 497b43c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

udroid/src/udroid.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ install() {
162162
# cause it make better use of path
163163
if [[ -z $path ]]; then
164164
# echo "$link + $name"
165-
msg_download $name $link "$DEFAULT_FS_INSTALL_DIR/$name"
165+
msg_download $name "$DEFAULT_FS_INSTALL_DIR/$name.tar.$ext" $link
166166
download "$name.tar.$ext" "$link"
167167

168168
# Start Extracting
@@ -177,7 +177,7 @@ install() {
177177

178178
gum_spin minidot "Applying proot fixes" bash proot-utils/proot-fixes.sh "$DEFAULT_FS_INSTALL_DIR/$name"
179179
else
180-
msg_download $name $link "$path/$name"
180+
msg_download $name "$path/$name.tar.$ext" "$link"
181181
download "$name.tar.$ext" "$link" "$path"
182182

183183
[[ -d $path ]] && {

0 commit comments

Comments
 (0)