hedgequantx 2.7.63 → 2.7.65

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": "hedgequantx",
3
- "version": "2.7.63",
3
+ "version": "2.7.65",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -354,9 +354,9 @@ const getLoginUrl = async (provider) => {
354
354
 
355
355
  const headless = isHeadless();
356
356
 
357
- // For headless/VPS, use -no-browser flag
357
+ // For headless/VPS, use -no-browser flag and specify config (which contains auth-dir)
358
358
  return new Promise((resolve) => {
359
- const args = [flag, '-no-browser'];
359
+ const args = [flag, '-no-browser', '-config', CONFIG_PATH];
360
360
  const child = spawn(BINARY_PATH, args, {
361
361
  cwd: INSTALL_DIR
362
362
  });