sidecar-mcp 1.0.1 → 1.0.2

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/bin/setup.js +2 -2
  2. package/package.json +1 -1
package/bin/setup.js CHANGED
@@ -23,10 +23,10 @@ function addKey() {
23
23
 
24
24
  function enableSSH() {
25
25
  try {
26
- execSync('sudo systemsetup -setremotelogin on', { stdio: 'inherit' });
26
+ execSync('sudo systemsetup -setremotelogin on', { stdio: ['inherit', 'pipe', 'pipe'] });
27
27
  } catch {
28
28
  try {
29
- execSync('sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist', { stdio: 'inherit' });
29
+ execSync('sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist', { stdio: ['inherit', 'pipe', 'pipe'] });
30
30
  } catch (err) {
31
31
  console.error('Could not enable Remote Login:', err.message);
32
32
  process.exit(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sidecar-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "One-command setup for all Sidecar MCP servers",
5
5
  "bin": {
6
6
  "sidecar-mcp": "./bin/setup.js"