sourcegraph / src-cli

Sourcegraph CLI
https://sourcegraph.com
Apache License 2.0
267 stars 57 forks source link

wrong powershell instructions for setting env variables #1024

Closed DanielJump closed 10 months ago

DanielJump commented 10 months ago

On this page: https://github.com/sourcegraph/src-cli#installation

It says: $env.SRC_ENDPOINT = 'https://sourcegraph.example.com' $env.SRC_ACCESS_TOKEN = 'my-token'

It should be: $env:SRC_ENDPOINT = 'https://sourcegraph.example.com' $env:SRC_ACCESS_TOKEN = 'my-token'

mrnugget commented 10 months ago

Thanks for reporting. Fix is here: https://github.com/sourcegraph/src-cli/pull/1025