dotfiles/system/install.sh

16 lines
217 B
Bash
Executable File

#!/bin/sh
set -eu
distro="$(lsb_release -si)"
case "$distro" in
Arch)
cd arch
makepkg --syncdeps --force --install --clean
;;
*)
echo >&2 "distro '$distro' is unsupported"
exit 1
;;
esac