sst 2.3.5 → 2.3.6

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.
@@ -211,7 +211,7 @@ export const bind = (program) => program
211
211
  shell: true,
212
212
  });
213
213
  p.on("exit", (code) => {
214
- process.exit();
214
+ process.exit(code || 0);
215
215
  });
216
216
  }
217
217
  function areEnvsSame(envs1, envs2) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sst",
3
- "version": "2.3.5",
3
+ "version": "2.3.6",
4
4
  "bin": {
5
5
  "sst": "cli/sst.js"
6
6
  },
package/sst.mjs CHANGED
@@ -7310,7 +7310,7 @@ var bind = (program2) => program2.command(
7310
7310
  shell: true
7311
7311
  });
7312
7312
  p.on("exit", (code) => {
7313
- process.exit();
7313
+ process.exit(code || 0);
7314
7314
  });
7315
7315
  }
7316
7316
  function areEnvsSame(envs1, envs2) {