@telara-cli/cli 0.1.5 → 0.1.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telara-cli/cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Telara CLI — manage your MCP configurations",
5
5
  "homepage": "https://telara.dev",
6
6
  "repository": {
@@ -227,7 +227,9 @@ async function main() {
227
227
  }
228
228
  }
229
229
 
230
- main().catch((err) => {
230
+ main().then(() => {
231
+ process.exit(0);
232
+ }).catch((err) => {
231
233
  console.error('');
232
234
  console.error('telara install failed: ' + err.message);
233
235
  console.error('');