dotfiles/system/install.sh
2019-10-09 00:32:05 +03:00

16 lines
209 B
Bash
Executable file

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