mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-13 09:42:27 +00:00
[misc] Cleanup bootstrap script
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
which git > /dev/null 2>&1
|
||||
which git >/dev/null 2>&1
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Git isn't installed."
|
||||
exit
|
||||
fi
|
||||
|
||||
# Clone dotfiles
|
||||
git clone https://github.com/nikdoof/dotfiles.git $HOME/.dotfiles > /dev/null
|
||||
git clone https://github.com/nikdoof/dotfiles.git $HOME/.dotfiles >/dev/null
|
||||
|
||||
# Stow the default packages
|
||||
for package in bin shell-common bash zsh; do
|
||||
|
||||
Reference in New Issue
Block a user