Files
omarchy-sc/packaging/postrm
T
2026-08-31 20:38:41 +02:00

7 lines
123 B
Bash

#!/bin/sh
set -e
if command -v systemctl >/dev/null 2>&1; then
systemctl daemon-reload >/dev/null 2>&1 || true
fi
exit 0