mirror of
https://github.com/ivabus/website
synced 2024-11-09 18:15:23 +03:00
10 lines
203 B
Bash
10 lines
203 B
Bash
#!/bin/sh
|
|
|
|
if ! command -v git &> /dev/null
|
|
then
|
|
echo "git should be installed"
|
|
exit 255
|
|
fi
|
|
git clone https://github.com/ivabus/ivabus-dotfiles $HOME/.dotfiles
|
|
exec sh $HOME/.dotfiles/tools/install.sh
|