@inetafrica/open-claudia 1.2.0 → 1.2.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/bot.js +2 -1
  2. package/package.json +1 -1
package/bot.js CHANGED
@@ -93,9 +93,10 @@ const BOT_DIR = __dirname;
93
93
  // Detect PATH for subprocess
94
94
  const FULL_PATH = [
95
95
  path.dirname(CLAUDE_PATH),
96
+ path.dirname(process.execPath),
96
97
  FFMPEG ? path.dirname(FFMPEG) : null,
97
98
  WHISPER_CLI ? path.dirname(WHISPER_CLI) : null,
98
- "/usr/local/bin", "/usr/bin", "/bin", "/usr/sbin", "/sbin",
99
+ "/opt/homebrew/bin", "/usr/local/bin", "/usr/bin", "/bin", "/usr/sbin", "/sbin",
99
100
  ].filter(Boolean).join(":");
100
101
 
101
102
  const bot = new TelegramBot(TOKEN, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inetafrica/open-claudia",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Your always-on AI coding assistant — Claude Code via Telegram",
5
5
  "main": "bot.js",
6
6
  "bin": {