view clearCache.sh @ 22:b0e75dfe1853

change isSemiprivate to isNew
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 13 Jun 2020 22:59:17 -0600
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";