@integrity-labs/agt-cli 0.10.10 → 0.10.12
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/dist/bin/agt.js +130 -54
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-PZG4XPJV.js → chunk-KZ7Y55HJ.js} +4 -3
- package/dist/{chunk-PZG4XPJV.js.map → chunk-KZ7Y55HJ.js.map} +1 -1
- package/dist/lib/manager-worker.js +5 -3
- package/dist/lib/manager-worker.js.map +1 -1
- package/package.json +1 -1
|
@@ -3542,9 +3542,10 @@ function setActiveTeam(slug) {
|
|
|
3542
3542
|
}
|
|
3543
3543
|
var DEFAULT_AGT_HOST = "https://api.augmented.team";
|
|
3544
3544
|
function getHost() {
|
|
3545
|
-
|
|
3545
|
+
const envHost = process.env["AGT_HOST"]?.trim();
|
|
3546
|
+
return envHost ? envHost : DEFAULT_AGT_HOST;
|
|
3546
3547
|
}
|
|
3547
|
-
var 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-
|
|
5750
|
+
//# sourceMappingURL=chunk-KZ7Y55HJ.js.map
|