diff --git a/README.md b/README.md index 437bfe0..bc96f91 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,10 @@ How do I uninstall Magisk? - Download a WSA version that doesn't include Magisk from the [Releases page](https://github.com/PeterNjeim/MagiskOnWSA/releases). Then follow the [Installation instructions](#installation) +Can I switch between OpenGApps and MindTheGapps? + +- No. GApps will no longer function. Do a [complete uninstallation](#uninstallation) before switching + How do I install custom Magisk or GApps? 1. Fork this repository diff --git a/scripts/build.sh b/scripts/build.sh index 76d78b5..de3478e 100644 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -29,6 +29,11 @@ if [ "$HOST_ARCH" != "x86_64" ] && [ "$HOST_ARCH" != "aarch64" ]; then fi cd "$(dirname "$0")" || exit 1 trap umount_clean EXIT +PARENT_DIR="$(dirname "$PWD")" +# export TMPDIR=$PARENT_DIR/WORK_DIR_ +if [ "$TMPDIR" ] && [ ! -d "$TMPDIR" ]; then + mkdir -p "$TMPDIR" +fi WORK_DIR=$(mktemp -d -t wsa-build-XXXXXXXXXX_) || exit 1 DOWNLOAD_DIR=../download DOWNLOAD_CONF_NAME=download.list @@ -51,6 +56,10 @@ umount_clean() { else rm -rf "${WORK_DIR:?}" fi + if [ "$TMPDIR" ] && [ -d "$TMPDIR" ]; then + rm -rf "${TMPDIR:?}" + unset TMPDIR + fi } clean_download() { if [ -d "$DOWNLOAD_DIR" ]; then