mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix: Mount script causes build to fail (#1613)
This commit is contained in:
parent
3f96608398
commit
f3c78c2c24
1 changed files with 3 additions and 3 deletions
|
@ -145,9 +145,9 @@ class RootAPI {
|
|||
final String mountScript = '''
|
||||
#!/system/bin/sh
|
||||
# Mount using Magisk mirror, if available.
|
||||
MAGISKTMP="$( magisk --path )" || MAGISKTMP=/sbin
|
||||
MIRROR="${'$'}MAGISKTMP/.magisk/mirror"
|
||||
if [ ! -f ${'$'}MIRROR ]; then
|
||||
MAGISKTMP="\$( magisk --path )" || MAGISKTMP=/sbin
|
||||
MIRROR="\$MAGISKTMP/.magisk/mirror"
|
||||
if [ ! -f \$MIRROR ]; then
|
||||
MIRROR=""
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue