Skip to content

Commit 1a8b62e

Browse files
authored
Update android-tools-appimage.sh
1 parent 7c1b20c commit 1a8b62e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

android-tools-appimage.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ln -s ./Android.png ./.DirIcon
3232
cat >> ./AppRun << 'EOF'
3333
#!/bin/sh
3434
CURRENTDIR="$(dirname "$(readlink -f "$0")")"/usr/bin
35-
UDEVNOTICE=$(echo "If you get errors it might be because of missing android udev rules, use --getudev to install them")
35+
UDEVNOTICE="If you get errors it might be because of missing android udev rules, use --getudev to install them"
3636
ARGS="$(echo "$@" | cut -f2- -d ' ')"
3737
export PATH="$CURRENTDIR:$PATH"
3838
if [ "$1" = "adb" ]; then
@@ -54,8 +54,8 @@ if [ "$1" = "adb" ]; then
5454
echo "udev rules already installed"
5555
echo "Errors persisting with installed udev rules may be due to specific phone missing from the rules or insufficient permissions on the phone"
5656
else
57-
UDEVREPO=https://github.com/M0Rf30/android-udev-rules.git
58-
git clone $UDEVREPO
57+
UDEVREPO="https://github.com/M0Rf30/android-udev-rules.git"
58+
git clone "$UDEVREPO"
5959
cd android-udev-rules || exit 1
6060
chmod a+x ./install.sh
6161
echo "udev rules installer from $UDEVREPO"

0 commit comments

Comments
 (0)