allow fetching the website in our git work tree
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
parent
25513e9038
commit
171a7a0797
14
.gitignore
vendored
14
.gitignore
vendored
@ -1,10 +1,12 @@
|
|||||||
# Generated files
|
# Backups.
|
||||||
/docs/dev-doc/
|
|
||||||
/build/
|
|
||||||
*.pyc
|
|
||||||
offlineimap.1
|
|
||||||
# backups
|
|
||||||
.*.swp
|
.*.swp
|
||||||
.*.swo
|
.*.swo
|
||||||
*.html
|
*.html
|
||||||
*~
|
*~
|
||||||
|
# website.
|
||||||
|
/website/
|
||||||
|
# Generated files.
|
||||||
|
/docs/dev-doc/
|
||||||
|
/build/
|
||||||
|
*.pyc
|
||||||
|
offlineimap.1
|
||||||
|
9
get-website.sh
Executable file
9
get-website.sh
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/zsh
|
||||||
|
|
||||||
|
if test -d website
|
||||||
|
then
|
||||||
|
echo "Directory 'website' already exists..."
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
git clone TODO
|
||||||
|
fi
|
Loading…
Reference in New Issue
Block a user