Make consumedir-cleaner able to run on Windows

Since `bc` isn't available for Windows I changed it to use `expr`.
This commit is contained in:
Jan Bader
2021-05-17 11:32:10 +02:00
committed by GitHub
parent adbad2562a
commit 2855cf9828

View File

@ -149,8 +149,7 @@ do
rm "$tmp_filepath"
else
created=$(echo $curl_result | $JQ_CMD -r ".items[0].created")
cur_dir="$ds_archive_path/$(date -d @$(echo "($created+500)/1000" | bc) +%Y-%m
)"
cur_dir="$ds_archive_path/$(date -d @$(expr \( $created + 500 \) / 1000) +%Y-%m)"
echo "... moving to archive by month added ('$cur_dir')"
mkdir -p "$cur_dir"
mv "$tmp_filepath" "$cur_dir/"