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