1
0
Fork 0
mirror of https://github.com/kou029w/dotfiles.git synced 2025-01-18 16:07:59 +00:00
dotfiles/termux/install

15 lines
233 B
Text
Raw Permalink Normal View History

2022-06-15 00:15:50 +09:00
#!/bin/bash
set -euo pipefail
cd -- "$(dirname -- "$0")"
2024-10-29 04:26:19 +09:00
. ../mod.bash
2022-06-15 00:15:50 +09:00
function install_pkg_packages() {
local packages
. packages.bash
pkg upgrade -y
pkg install -y "${packages[@]}"
}
2024-10-29 04:26:19 +09:00
install_dotfiles
2022-06-15 00:15:50 +09:00
install_pkg_packages