allow fetching the website in our git work tree

Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Nicolas Sebrecht 2015-03-10 04:00:03 +01:00
parent 25513e9038
commit 171a7a0797
2 changed files with 17 additions and 6 deletions

14
.gitignore vendored
View File

@ -1,10 +1,12 @@
# Generated files
/docs/dev-doc/
/build/
*.pyc
offlineimap.1
# backups
# Backups.
.*.swp
.*.swo
*.html
*~
# website.
/website/
# Generated files.
/docs/dev-doc/
/build/
*.pyc
offlineimap.1

9
get-website.sh Executable file
View File

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