mirror of
https://gitee.com/amber-ce/amber-ce-bookworm.git
synced 2025-09-26 05:02:21 +08:00
11 lines
193 B
Bash
Executable File
11 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" = "remove" ] || [ "$1" = "purge" ];then
|
|
|
|
echo "清理卸载残留"
|
|
rm -rf /opt/apps/store.spark-app.bookworm-compatibility-mode/
|
|
else
|
|
echo "非卸载,跳过清理"
|
|
fi
|
|
|