Browse Source

Add a purgecache command to the songbook bash

pull/168/head
Oliverpool 9 years ago
parent
commit
96b2c3201a
  1. 6
      songbook

6
songbook

@ -3,4 +3,8 @@
# Do not edit this file. This file is just a helper file for development test.
# It is not part of the distributed software.
python -m patacrep.songbook $*
if [ $1 = "purgecache" ]; then
find . -name ".cache" -type d -print -exec rm -r {} +
else
python -m patacrep.songbook $*
fi

Loading…
Cancel
Save