mirror of
https://github.com/kou029w/dotfiles.git
synced 2025-03-30 07:05:17 +00:00
13 lines
249 B
Bash
Executable file
13 lines
249 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
cd -- "$(dirname -- "$0")"
|
|
|
|
function install_pkg_packages() {
|
|
local packages
|
|
. packages.bash
|
|
pkg upgrade -y
|
|
pkg install -y "${packages[@]}"
|
|
}
|
|
|
|
rm -f /data/data/com.termux/files/usr/etc/motd
|
|
install_pkg_packages
|