From c5b66e94be40568417588a88cf032a61a875e9e2 Mon Sep 17 00:00:00 2001 From: j-hc Date: Sun, 3 Jul 2022 22:19:54 +0300 Subject: [PATCH] set -xe Former-commit-id: 95398b41bda1eee19c4efb034292f7561aa9826d --- build-module.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-module.sh b/build-module.sh index 9367e7b..aa57336 100755 --- a/build-module.sh +++ b/build-module.sh @@ -1,13 +1,13 @@ #!/bin/bash -set -e +set -xe echo "All necessary files (revanced cli, patches and integrations, stock YouTube apk) will be downloaded, Youtube apk will be patched and zipped into a Magisk module" WGET_HEADER='User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0' function req() { - wget -nv --show-progress -O $2 --header="$WGET_HEADER" $1 + wget -nv -O $2 --header="$WGET_HEADER" $1 } # yes this is how i download the stock yt apk from apkmirror