adk-docs
adk-docs copied to clipboard
PowerShell and Command Prompt handle single quotes differently
Describe the bug
In this page: https://google.github.io/adk-docs/get-started/go/#windows_1
The Windows command line below is a little bit ambiguous:
echo 'set GOOGLE_API_KEY="YOUR_API_KEY"' > env.bat
In PowerShell/pwsh, the command above is correct. But in Command Prompt, the correct command should be:
echo set GOOGLE_API_KEY="YOUR_API_KEY" > env.bat
I suggest the tab name should change to "Windows PowerShell" or "pwsh".
Screenshots
Versions
- OS: Windows
- ADK version: Not relevant.
- Python version: Not relevant.
Additional context
It's a doc issue.