#!/usr/bin/bash
lock_file='/var/www/html/thewarren.co.za/services/unzip_prices.lock'
touch $lock_file
rm /var/www/html/thewarren.co.za/mtg_importer/AllPricesToday.json
unzip -o /var/www/html/thewarren.co.za/mtg_importer/AllPricesToday.json.zip -d /var/www/html/thewarren.co.za/mtg_importer/
rm /var/www/html/thewarren.co.za/mtg_importer/AllPricesToday.json.zip
rm $lock_file