Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

Create warning for some use cases #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions diggy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ if [ -e $decom ]
then
printf $"$info Looks like this apk has been decompiled already.\n"
printf "$que"
read -p " Decompile over the existing copy? [y/N] " choice
read -p " Decompile over the existing copy? (Wipes entire current working directory!) [y/N] " choice
if [ choice == "y" ]
then
rm -r $decom
Expand All @@ -64,7 +64,7 @@ if [ -e $links ]
then
printf $"$info Looks like links have been already extracted from this apk.\n"
printf "$que"
read -p " Rewrite the previous result? [y/N] " choice
read -p " Rewrite the previous result? (Potentially deletes user files) [y/N] " choice
if [ choice == "y" ]
then
rm $links
Expand Down