Skip to content

Commit eedd066

Browse files
garyshengclaude
andcommitted
fix: uninstall both skills, add runtime files to gitignore, fix redirect
- uninstall.sh now removes both peon-ping-toggle and peon-ping-config - .gitignore: add .last_update_check, .state.json, homebrew-tap/ - docs/vercel.json: change install redirect from 302 to 301 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 150a310 commit eedd066

3 files changed

Lines changed: 14 additions & 9 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ firebase-debug.log
66
.claude/
77
.env*.local
88
social-post.md
9+
.last_update_check
10+
.state.json
11+
homebrew-tap/

docs/vercel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"source": "/install",
55
"destination": "https://raw.githubusercontent.com/PeonPing/peon-ping/main/install.sh",
6-
"statusCode": 302
6+
"statusCode": 301
77
}
88
]
99
}

uninstall.sh

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -116,14 +116,16 @@ if [ -f "$FISH_COMPLETIONS" ]; then
116116
echo "Removed fish completions"
117117
fi
118118

119-
# --- Remove skill directory ---
120-
SKILL_DIR="$BASE_DIR/skills/peon-ping-toggle"
121-
if [ -d "$SKILL_DIR" ]; then
122-
echo ""
123-
echo "Removing $SKILL_DIR..."
124-
rm -rf "$SKILL_DIR"
125-
echo "Removed skill"
126-
fi
119+
# --- Remove skill directories ---
120+
for SKILL_NAME in peon-ping-toggle peon-ping-config; do
121+
SKILL_DIR="$BASE_DIR/skills/$SKILL_NAME"
122+
if [ -d "$SKILL_DIR" ]; then
123+
echo ""
124+
echo "Removing $SKILL_DIR..."
125+
rm -rf "$SKILL_DIR"
126+
echo "Removed $SKILL_NAME skill"
127+
fi
128+
done
127129

128130
# --- Remove install directory ---
129131
if [ -d "$INSTALL_DIR" ]; then

0 commit comments

Comments
 (0)