2022-07-04 16:06:23 +03:00
|
|
|
#!/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
|
2023-06-15 15:58:43 +03:00
|
|
|
exec sh $HOME/.dotfiles/tools/install.sh
|