11 lines
282 B
Bash
Executable File
11 lines
282 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
log "Installing pgcli..."
|
|
sudo pacman -S --noconfirm --needed pgcli
|
|
|
|
log "Installing mycli (AUR)..."
|
|
yay -S --answerdiff None --answerclean All --noconfirm mycli
|
|
log "DB clients installed."
|