greptile 2.1.0 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/preuninstall.sh +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "greptile",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Bridge for Greptile code review 'Fix in Claude Code' and 'Fix in Codex' links",
5
5
  "bin": {
6
6
  "greptile-fix": "bin/greptile-fix.js"
package/preuninstall.sh CHANGED
@@ -2,6 +2,11 @@
2
2
  #
3
3
  # preuninstall.sh — Removes the Greptile Fix .app bundle on npm uninstall.
4
4
 
5
+ # Only run on macOS
6
+ if [ "$(uname)" != "Darwin" ]; then
7
+ exit 0
8
+ fi
9
+
5
10
  APP_PATH="$HOME/Applications/Greptile Fix.app"
6
11
 
7
12
  if [ -d "$APP_PATH" ]; then