mirror of
https://gitee.com/spark-store-project/spark-web-app-runtime.git
synced 2025-07-07 22:26:00 +08:00
8 lines
173 B
Bash
Executable File
8 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" = "remove" -o "$1" = "purge" ] ; then
|
|
# Remove residual symbol links
|
|
rm -f /usr/bin/spark-webapp-runtime
|
|
rm -rf /usr/share/spark-webapp-runtime
|
|
fi
|