docker-offlineimap/get-website.sh
Nicolas Sebrecht 171a7a0797 allow fetching the website in our git work tree
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
2015-03-10 04:00:03 +01:00

10 lines
114 B
Bash
Executable File

#!/bin/zsh
if test -d website
then
echo "Directory 'website' already exists..."
exit 1
else
git clone TODO
fi