Skip to content

Commit

Permalink
remove colons in logfile name for WSL compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
asnapper committed Feb 8, 2018
1 parent 50e4496 commit 7e1b75f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RunMeNg.sh
Expand Up @@ -215,7 +215,7 @@ outdir="__MODDED_APK_OUT__"

timestamp=$(date -u +"%Y-%M-%dT%R:%S")

log_file="$outdir/log-cfg-$timestamp.txt"
log_file="$outdir/log-cfg-${timestamp//:/_}.txt"

touch $log_file

Expand Down
2 changes: 1 addition & 1 deletion decompile_apk.sh
Expand Up @@ -34,7 +34,7 @@ else
timestamp=$3
fi

log_file="$outdir/log-cfg-$timestamp.txt"
log_file="$outdir/log-cfg-${timestamp//:/_}.txt"

while true; do
if [ -e PutApkHere/$1 ]
Expand Down
2 changes: 1 addition & 1 deletion patch_apk.sh
Expand Up @@ -32,7 +32,7 @@ else
timestamp=$2
fi

log_file="$outdir/log-cfg-$timestamp.txt"
log_file="$outdir/log-cfg-${timestamp//:/_}.txt"

cd $1
apkver=`cat apktool.yml | grep versionName: | awk '{print $2}'`
Expand Down

0 comments on commit 7e1b75f

Please sign in to comment.