mirror of
https://github.com/kou029w/dotfiles.git
synced 2025-01-18 08:05:01 +00:00
14 lines
233 B
Bash
Executable file
14 lines
233 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
cd -- "$(dirname -- "$0")"
|
|
. ../mod.bash
|
|
|
|
function install_pkg_packages() {
|
|
local packages
|
|
. packages.bash
|
|
pkg upgrade -y
|
|
pkg install -y "${packages[@]}"
|
|
}
|
|
|
|
install_dotfiles
|
|
install_pkg_packages
|