diff options
| -rwxr-xr-x | setup.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -14,9 +14,6 @@ fi basedir="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)" dotfiles="$HOME/.dotfiles" -# Install dependencies -brew bundle --file $dotfiles/Brewfile - # Ensure the XDG user-specific configurations directory exists mkdir -p "$HOME/.config" @@ -25,6 +22,9 @@ if [ ! -e "$dotfiles" ]; then ln -s "$basedir" "$dotfiles" fi +# Install dependencies +brew bundle --file $dotfiles/Brewfile + # Publish zsh configurations if [ ! -e "$HOME/.zshrc" ]; then ln -s "$dotfiles/.zshrc" "$HOME/.zshrc" |
