@geekbeer/minion 2.16.0 → 2.16.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.
- package/minion-cli.sh +2 -0
- package/package.json +1 -1
- package/routes/auth.js +2 -1
package/minion-cli.sh
CHANGED
package/package.json
CHANGED
package/routes/auth.js
CHANGED
|
@@ -102,8 +102,9 @@ function startClaudeAuth() {
|
|
|
102
102
|
try {
|
|
103
103
|
// Start claude auth login in a new tmux session
|
|
104
104
|
// CLAUDECODE='' prevents the nesting check
|
|
105
|
+
// HOME must be set explicitly because systemd clears environment variables
|
|
105
106
|
execSync(
|
|
106
|
-
`tmux new-session -d -s ${TMUX_SESSION} -x 500 -y 40 'CLAUDECODE="" claude auth login'`,
|
|
107
|
+
`tmux new-session -d -s ${TMUX_SESSION} -x 500 -y 40 'HOME="${config.HOME_DIR}" CLAUDECODE="" claude auth login'`,
|
|
107
108
|
{ timeout: 5000 }
|
|
108
109
|
)
|
|
109
110
|
} catch (err) {
|