From 0c72202485d4042624ee6523c0c751c73d031a7d Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 6 Jul 2020 21:04:06 +0200 Subject: [PATCH] Fix mistaken mv usage. --- update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update.sh b/update.sh index 6e45271..ace8592 100755 --- a/update.sh +++ b/update.sh @@ -24,5 +24,5 @@ curl "${CSV_URL}" \ # kill this script due to "set -e". ./enhance_table.py "${table_path}" html > /tmp/berlin_corona.html ./enhance_table.py "${table_path}" txt > /tmp/berlin_corona.txt -mv /tmp/berlin_corona.html > /var/www/html/ -mv /tmp/berlin_corona.txt > /var/www/html/ +mv /tmp/berlin_corona.html /var/www/html/ +mv /tmp/berlin_corona.txt /var/www/html/ -- 2.30.2