diff --git a/Full/system/etc/bashrc b/Full/system/etc/bashrc index 81c8862..62d8d14 100644 --- a/Full/system/etc/bashrc +++ b/Full/system/etc/bashrc @@ -4,14 +4,14 @@ export SHELL=${BASH} # select storage path if [ -n ${EXTERNAL_STORAGE} ]; then - export HOME="${EXTERNAL_STORAGE}/logcats" + export HOME="${EXTERNAL_STORAGE}" else if [ -w /sdcard ]; then - export HOME="/sdcard/logcats" + export HOME="/sdcard" elif [ -w /storage/self/primary ]; then - export HOME="/storage/self/primary/logcats" + export HOME="/storage/self/primary" elif [ -w /data/media/0 ]; then - export HOME="/data/media/0/logcats" + export HOME="/data/media/0" fi fi diff --git a/Full/system/xbin/nanodroid-overlay b/Full/system/xbin/nanodroid-overlay index b318288..7b717d8 100755 --- a/Full/system/xbin/nanodroid-overlay +++ b/Full/system/xbin/nanodroid-overlay @@ -23,14 +23,14 @@ fi # select storage path if [ -n ${EXTERNAL_STORAGE} ]; then - STORAGE="${EXTERNAL_STORAGE}/logcats" + STORAGE="${EXTERNAL_STORAGE}" else if [ -w /sdcard ]; then - STORAGE="/sdcard/logcats" + STORAGE="/sdcard" elif [ -w /storage/self/primary ]; then - STORAGE="/storage/self/primary/logcats" + STORAGE="/storage/self/primary" elif [ -w /data/media/0 ]; then - STORAGE="/data/media/0/logcats" + STORAGE="/data/media/0" fi fi