You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
…e value (#170)
* Issue #169: Need documentation when using ! in an environment variable value
Signed-off-by: macdonst <simon.macdonald@gmail.com>
* change string quotes
---------
Signed-off-by: macdonst <simon.macdonald@gmail.com>
Co-authored-by: Taylor Beseda <tbeseda@gmail.com>
When you run the command:
The command fails to execute. Which is not surprising since the
!
needs to be escaped like:begin env create -e staging -n API_KEY -v "fake\!key"
but this is not immediately apparent to users. The situation is even worse on Windows (PowerShell) where the command:
begin env create -e staging -n API_KEY -v fake!key
sets and API_KEY to the value
fake
.Expected behaviour
We should update our documentation to add the double quotes around environment variable values and show an example of an escaped value.
Steps to reproduce
Run the command:
begin env create -e staging -n 1API_KEY -v fake!key
Platform version
Also reported by a user at our workshop on Windows. I will attempt to reproduce when I get to a Windows machine.
The text was updated successfully, but these errors were encountered: