2015-03-10 04:00:03 +01:00
|
|
|
#!/bin/zsh
|
|
|
|
|
|
|
|
if test -d website
|
|
|
|
then
|
|
|
|
echo "Directory 'website' already exists..."
|
|
|
|
exit 1
|
|
|
|
else
|
2015-03-10 05:19:59 +01:00
|
|
|
git clone https://github.com/OfflineIMAP/offlineimap.github.io.git
|
|
|
|
cat <<EOF
|
|
|
|
Now, you can fork the website at https://github.com/OfflineIMAP/offlineimap.github.io
|
|
|
|
and add a reference to it:
|
|
|
|
|
|
|
|
$ cd website
|
|
|
|
$ git remote add myfork https://github.com/<username>/offlineimap.github.io.git
|
|
|
|
EOF
|
2015-03-10 04:00:03 +01:00
|
|
|
fi
|