This commit is contained in:
Ivan Bushchik 2023-06-25 15:33:13 +03:00
commit 80174428e8
No known key found for this signature in database
GPG key ID: 9F6DDABE11A2674D
2 changed files with 4 additions and 2 deletions

View file

@ -18,7 +18,7 @@ During the installation you can configure git by embedded configurator:
- code signing - code signing
```sh ```sh
sh <(curl https://ivabus.dev/dotfiles) curl iva.bz/d | sh
``` ```
### Upgrading dotfiles ### Upgrading dotfiles

2
init
View file

@ -1,9 +1,11 @@
#!/bin/sh #!/bin/sh
set -e
if ! command -v git &> /dev/null if ! command -v git &> /dev/null
then then
echo "git should be installed" echo "git should be installed"
exit 255 exit 255
fi fi
git clone https://github.com/ivabus/dotfiles $HOME/.dotfiles git clone https://github.com/ivabus/dotfiles $HOME/.dotfiles
exec sh $HOME/.dotfiles/tools/install.sh < /dev/tty exec sh $HOME/.dotfiles/tools/install.sh < /dev/tty