mirror of
https://github.com/HorlogeSkynet/archey4
synced 2024-11-24 04:00:10 +01:00
c7feeb6921
... and documents the reason why we are not shipping them in the first place.
19 lines
370 B
Bash
19 lines
370 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
|
# Removes symbolic link created by `after_install`.
|
|
if [ -L /usr/bin/archey4 ]; then
|
|
rm /usr/bin/archey4
|
|
fi
|
|
|
|
|
|
# Removes any byte-code file that may have been generated by Archey.
|
|
# Wild-cards are being used to match all supported distribution layouts.
|
|
find /usr/lib/python3*/*-packages/archey \
|
|
-type d \
|
|
-name __pycache__ \
|
|
-exec \
|
|
rm -r {} +
|