12 lines
192 B
Bash
Executable file
12 lines
192 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source VARS
|
|
|
|
#
|
|
echo "Setting up zsh/bash (zshdb, bashdb)"
|
|
|
|
if is-mac; then
|
|
brew install zshdb bashdb
|
|
elif is-arch; then
|
|
sudo pacman --noconfirm -S zshdb bashdb
|
|
fi
|