mirror of
https://github.com/termux-pacman/glibc-packages.git
synced 2025-10-02 09:29:32 +00:00
13 lines
207 B
Bash
Executable File
13 lines
207 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Clear prefix of unnecessary files after installing packages
|
|
|
|
set -e
|
|
|
|
if [ ! -d "${DIR_TERMUX}/files" ]; then
|
|
echo "Error: prefix not found"
|
|
exit 1
|
|
fi
|
|
|
|
rm -fr "${DIR_TERMUX}"/files/*
|