Luna/tools/uninstall-package.sh
apio 16590dbb02
All checks were successful
continuous-integration/drone/push Build is passing
ports: Avoid using two separate directories for port packages
2023-08-08 17:43:27 +02:00

19 lines
346 B
Bash
Executable File

#!/usr/bin/env bash
set -e
source $(dirname $0)/env.sh
cd $LUNA_BASE
PORT_NAME=$1
PORT_FILES=$LUNA_BASE/usr/share/pkgdb/$PORT_NAME.files
if ! [ -f $PORT_FILES ]
then
echo "Package $PORT_NAME has not been installed."
exit 1
fi
rm -v $(cat $LUNA_BASE/usr/share/pkgdb/$PORT_NAME.files)
rm -v $LUNA_BASE/usr/share/pkgdb/$PORT_NAME.files