diff options
-rwxr-xr-x | extractAll.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extractAll.sh b/extractAll.sh index 4aab128..5870e1f 100755 --- a/extractAll.sh +++ b/extractAll.sh @@ -13,7 +13,7 @@ while read -r F; do pushd "$destdir" || continue for G in ./*; do echo "Converting $G to ${G}.txt" - $root/convertFileDs.py "$G" > "${G}.txt" && touch -r "${G}" "${G}.txt" || rm "${G}.txt" + $root/convertFileDs.py "$G" > "${G}.txt" && touch -r "${G}" "${G}.txt" && rm "${G}" || rm "${G}.txt" done popd rm "$linear" |