mirror of
https://github.com/ivabus/dotfiles
synced 2024-11-10 02:05:16 +03:00
12 lines
219 B
Plaintext
12 lines
219 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
if ! command -v git &> /dev/null
|
||
|
then
|
||
|
echo "git should be installed"
|
||
|
exit 255
|
||
|
fi
|
||
|
|
||
|
git clone https://github.com/ivabus/dotfiles $HOME/.dotfiles
|
||
|
exec sh $HOME/.dotfiles/tools/install_nix.sh < /dev/tty
|