claudeos-core 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.
- package/bin/cli.js +1 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -179,7 +179,7 @@ async function cmdInit() {
|
|
|
179
179
|
}
|
|
180
180
|
|
|
181
181
|
// Verify Claude is authenticated (quick prompt test)
|
|
182
|
-
const claudeAuth = run('claude -p "echo ok"
|
|
182
|
+
const claudeAuth = run('claude -p "echo ok"', { silent: true, ignoreError: true });
|
|
183
183
|
if (!claudeAuth) {
|
|
184
184
|
log("\n ⚠️ Claude Code may not be authenticated.");
|
|
185
185
|
log(" Run: claude (and complete authentication)");
|
package/package.json
CHANGED