web/bin/clean-all

11 lines
232 B
Text
Raw Normal View History

2016-04-05 00:19:21 +00:00
#!/usr/bin/env bash
2016-06-12 17:48:33 +00:00
set -e;
BINDIR="$(dirname $(realpath "${0}"))";
BASEDIR="$(realpath "${BINDIR}/../")";
cd "${BASEDIR}";
2016-04-05 00:19:21 +00:00
rm -rf ./storage/ca/*;
mkdir ./storage/ca/certs;
2016-06-12 17:48:33 +00:00
touch ./storage/ca/certs/.gitkeep ./storage/ca/.gitkeep;