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