view clearCache.sh @ 6:c4ed473452d4

better https support
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 22 Jul 2019 05:37:46 -0400
parents 7ecd1a4ef557
children
line wrap: on
line source

#!/bin/bash
 
set -e

cd `dirname $0`

mkdir -p local/cache
mv local/cache local/cache.old
rm -rf local/cache.old &

echo "cache cleared";