mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
16 lines
209 B
Bash
16 lines
209 B
Bash
|
#!/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
|