@agent8/deploy 1.0.7 → 1.0.8
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/bin/agent8.js +1 -10
- package/package.json +1 -1
package/bin/agent8.js
CHANGED
|
@@ -71,16 +71,7 @@ if (envChanged) {
|
|
|
71
71
|
console.log("Updated .env file with new values");
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
const accessToken = process.env.V8_ACCESS_TOKEN;
|
|
75
|
-
|
|
76
|
-
// Check if access token exists
|
|
77
|
-
if (!accessToken) {
|
|
78
|
-
console.error("Error: Missing V8_ACCESS_TOKEN environment variable");
|
|
79
|
-
console.error(
|
|
80
|
-
"Please set V8_ACCESS_TOKEN in your environment before deploying"
|
|
81
|
-
);
|
|
82
|
-
process.exit(1);
|
|
83
|
-
}
|
|
74
|
+
const accessToken = process.env.V8_ACCESS_TOKEN || "TESTER";
|
|
84
75
|
|
|
85
76
|
console.log("Starting deployment to verse:", verse);
|
|
86
77
|
console.log("Account:", account);
|