We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
q doctor
q restart
macOS 15.3.2 (24D81)
q login --license pro --identity-provider https://amzn.awsapps.com/start --region us-east-1
Q login, but with manual steps
q login
No response
[q-details] version = "1.7.2" hash = "b6bf5f1675dd7395009e8bc65c1145820671f211" date = "2025-03-21T01:36:16.66764Z (15d ago)" variant = "full" [system-info] os = "macOS 15.3.2 (24D81)" chip = "Apple M3 Pro" total-cores = 12 memory = "36.00 GB" [environment] cwd = "/Volumes/Development/DMGPrototypeQOnboarding/src/DMGPrototypeQOnboarding" cli-path = "/Volumes/Development/DMGPrototypeQOnboarding/src/DMGPrototypeQOnboarding" os = "Mac" shell-path = "/Users/USER/.toolbox/tools/toolbox/1.1.1762.0/toolbox-exec" shell-version = "5.9" terminal = "macOS" install-method = "toolbox" [env-vars] PATH = "/Users/USER/.rbenv/shims:/Users/USER/.rbenv/bin:/Users/USER/.rbenv/shims:/Users/USER/.local/bin:/Users/USER/.local/share/mise/installs/node/18.20.2/bin:/Users/USER/.local/share/mise/installs/python/3.12.9/bin:/Users/USER/.local/share/mise/installs/python/3.11.11/bin:/Users/USER/.local/share/mise/installs/python/3.10.16/bin:/Users/USER/.local/share/mise/installs/python/3.9.21/bin:/Users/USER/.local/share/mise/installs/python/3.8.20/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/USER/.rbenv/shims:/Users/USER/.rbenv/bin:/Users/USER/.local/bin:/Users/USER/.nvm/versions/node/v20.19.0/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Library/Apple/usr/bin:/Users/USER/.cargo/bin:/Applications/Visual Studio Code.app/Contents/Resources/app/bin:/Users/USER/.toolbox/bin:/Users/USER/Library/Android/sdk/emulator:/Users/USER/Library/Android/sdk/platform-tools:/Users/USER/Library/Android/sdk/tools:/Users/USER/Library/Android/sdk/emulator:/Users/USER/Library/Android/sdk/platform-tools:/Users/USER/Library/Android/sdk/emulator:/Users/USER/Library/Android/sdk/platform-tools:/Users/USER/Library/Android/sdk/tools:/Users/USER/Library/Android/sdk/platform-tools:/Users/USER/Library/Android/sdk/emulator:/Users/USER/Library/Android/sdk/tools:/Users/USER/Library/Android/sdk/platform-tools:/Users/USER/.toolbox/bin" SHELL = "/bin/zsh" TERM = "xterm-256color" __CFBundleIdentifier = "com.apple.Terminal"
The text was updated successfully, but these errors were encountered:
As a workaround, here is a script that automates this using expect, see https://core.tcl-lang.org/expect/home
expect
#!/usr/bin/expect -f spawn q login # Wait for login method prompt and select "Use with Pro license" expect "Select login method" sleep 1 send "\x1B\[B\r" expect { -re "Enter Start URL.*https://amzn\\.awsapps\\.com/start" { sleep 1 send "\r" } -re "Enter Start URL.*" { sleep 1 send "https://amzn.awsapps.com/start\r" } } expect { -re "Enter Region.*us-east-1" { sleep 1 send "\r" } -re "Enter Region.*" { sleep 1 send "us-east-1\r" } } expect "Logging in..." # Wait for user to follow browser prompt interact
Sorry, something went wrong.
No branches or pull requests
Checks
q doctor
in the affected terminal sessionq restart
and replicated the issue againOperating system
macOS 15.3.2 (24D81)
Expected behaviour
Actual behaviour
Q login, but with manual steps
Steps to reproduce
No response
Environment
The text was updated successfully, but these errors were encountered: