summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xextractAll.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/extractAll.sh b/extractAll.sh
index 8b8649f..4aab128 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" || rm "${G}.txt"
+ $root/convertFileDs.py "$G" > "${G}.txt" && touch -r "${G}" "${G}.txt" || rm "${G}.txt"
done
popd
rm "$linear"