From 4d2b62da0df04ee30b558201db9dd55870dc0e5b Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Fri, 21 Jul 2023 12:04:42 -0700 Subject: [PATCH] Do not override global variables in document --- scripts/util_functions.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/util_functions.sh b/scripts/util_functions.sh index 72f210fa6..689f7177e 100644 --- a/scripts/util_functions.sh +++ b/scripts/util_functions.sh @@ -9,17 +9,17 @@ ################### # True if the script is running on booted Android, not something like recovery -BOOTMODE= +# BOOTMODE= # The path to store temporary files that don't need to persist -TMPDIR= +# TMPDIR= # The path to store files that can be persisted (non-volatile storage) # Any modification to this variable should go through the function `set_nvbase` -NVBASE= +# NVBASE= # The non-volatile path where magisk executables are stored -MAGISKBIN= +# MAGISKBIN= ################### # Helper Functions