We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff8802d commit 088472cCopy full SHA for 088472c
shell/reverse-tools/apktool/DecompileApk.sh
@@ -51,6 +51,8 @@ waitUserInputParameter() {
51
while true; do
52
read -r rewriteConfirm
53
if [[ "${rewriteConfirm}" =~ ^[yY]$ ]]; then
54
+ rm -rf "${apkDecompileDirPath:?}"
55
+ mkdir -p "${apkDecompileDirPath}"
56
break
57
elif [[ "${rewriteConfirm}" =~ ^[nN]$ ]]; then
58
apkDecompileDirPath="${apkDecompileDirPath}${decompileDirNameSuffix}"
0 commit comments