11 lines
198 B
Plaintext
11 lines
198 B
Plaintext
post_install() {
|
|
echo "Running all afterthought fixes..."
|
|
for f in /data/data/com.termux/files/usr/etc/.darkcustom/fixes/*.sh; do
|
|
bash "$f"
|
|
done
|
|
|
|
}
|
|
post_upgrade() {
|
|
post_install
|
|
}
|