mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-11 05:42:20 +08:00
11 lines
110 B
Bash
11 lines
110 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
case "$1" in
|
|
purge)
|
|
|
|
rm -rf /usr/share/spark-update-tool
|
|
;;
|
|
esac
|
|
|
|
exit 0 |