mirror of
https://github.com/snltty/linker.git
synced 2025-12-24 12:38:04 +08:00
9 lines
192 B
Bash
9 lines
192 B
Bash
#!/bin/bash
|
|
|
|
### This script is called after the user uninstalls the application.
|
|
|
|
if [ "$wizard_data_action" = "delete" ]; then
|
|
rm -rf $TRIM_APPDEST_VOL/@appshare/linker-docker
|
|
fi
|
|
|
|
exit 0 |