Initial commit with translated description
This commit is contained in:
13
scripts/uninstall.sh
Normal file
13
scripts/uninstall.sh
Normal file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
# Uninstall stock-watcher skill
|
||||
|
||||
set -e
|
||||
|
||||
# Remove watchlist directory and files
|
||||
WATCHLIST_DIR="$HOME/.clawdbot/stock_watcher"
|
||||
if [ -d "$WATCHLIST_DIR" ]; then
|
||||
rm -rf "$WATCHLIST_DIR"
|
||||
echo "Removed watchlist directory: $WATCHLIST_DIR"
|
||||
fi
|
||||
|
||||
echo "Stock watcher skill uninstalled successfully."
|
||||
Reference in New Issue
Block a user