mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 01:52:25 +03:00
7 lines
96 B
Bash
7 lines
96 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [[ -d /etc/ahenk ]] && [[ "$1" = "purge" ]];then
|
|
rm -rf /etc/ahenk
|
|
fi
|