@integrity-labs/agt-cli 0.10.9 → 0.10.11

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.
@@ -3542,9 +3542,10 @@ function setActiveTeam(slug) {
3542
3542
  }
3543
3543
  var DEFAULT_AGT_HOST = "https://api.augmented.team";
3544
3544
  function getHost() {
3545
- return process.env["AGT_HOST"] ?? DEFAULT_AGT_HOST;
3545
+ const envHost = process.env["AGT_HOST"]?.trim();
3546
+ return envHost ? envHost : DEFAULT_AGT_HOST;
3546
3547
  }
3547
- var AGT_HOST = process.env["AGT_HOST"] ?? DEFAULT_AGT_HOST;
3548
+ var AGT_HOST = getHost();
3548
3549
  function requireHost() {
3549
3550
  return getHost();
3550
3551
  }
@@ -5746,4 +5747,4 @@ export {
5746
5747
  detectDrift,
5747
5748
  provision
5748
5749
  };
5749
- //# sourceMappingURL=chunk-PZG4XPJV.js.map
5750
+ //# sourceMappingURL=chunk-KZ7Y55HJ.js.map