@autohq/cli 0.1.178 → 0.1.179
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/agent-bridge.js +1 -1
- package/dist/index.js +3 -2
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -26572,7 +26572,7 @@ Object.assign(lookup, {
|
|
|
26572
26572
|
// package.json
|
|
26573
26573
|
var package_default = {
|
|
26574
26574
|
name: "@autohq/cli",
|
|
26575
|
-
version: "0.1.
|
|
26575
|
+
version: "0.1.179",
|
|
26576
26576
|
license: "SEE LICENSE IN README.md",
|
|
26577
26577
|
publishConfig: {
|
|
26578
26578
|
access: "public"
|
package/dist/index.js
CHANGED
|
@@ -21682,7 +21682,7 @@ var init_package = __esm({
|
|
|
21682
21682
|
"package.json"() {
|
|
21683
21683
|
package_default = {
|
|
21684
21684
|
name: "@autohq/cli",
|
|
21685
|
-
version: "0.1.
|
|
21685
|
+
version: "0.1.179",
|
|
21686
21686
|
license: "SEE LICENSE IN README.md",
|
|
21687
21687
|
publishConfig: {
|
|
21688
21688
|
access: "public"
|
|
@@ -33138,7 +33138,7 @@ async function connectGithub(context, commandOptions) {
|
|
|
33138
33138
|
}
|
|
33139
33139
|
return;
|
|
33140
33140
|
}
|
|
33141
|
-
if (discovery.unavailableReason === "github_login_required") {
|
|
33141
|
+
if (discovery.unavailableReason === "github_login_required" && !commandOptions.quietGithubLoginRequiredDiscovery) {
|
|
33142
33142
|
context.writeOutput(
|
|
33143
33143
|
"Existing GitHub installations could not be discovered because this Auto user does not have a linked GitHub login."
|
|
33144
33144
|
);
|
|
@@ -35870,6 +35870,7 @@ async function selectGithubConnection(context, project, options, apiBaseUrl) {
|
|
|
35870
35870
|
allow: project.projectId,
|
|
35871
35871
|
browser: options.browser,
|
|
35872
35872
|
openBrowser: options.openBrowser,
|
|
35873
|
+
quietGithubLoginRequiredDiscovery: true,
|
|
35873
35874
|
wait: true
|
|
35874
35875
|
});
|
|
35875
35876
|
return requireSingleConnection(context, "github", apiBaseUrl);
|