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
Currently the secrets env command contains different formats that get generated when it's not running a command. We need to add variants to these formats that include export within the file.
For example the unix format is structured as
ENV_ONE="one";
ENV_TWO="two";
But the new variant will include the export keyword
export ENV_ONE="one";
export ENV_TWO="two";
This should apply to all the existing formats where applicable. So if the cmd and powershell if they have a equavalent way of exporting env variables within a script then we should have a format version for them as well.
Additional context
Tasks
Add an export variant format for the unix format
Add an export variant for all other formats that can support it.
The text was updated successfully, but these errors were encountered:
Specification
Currently the
secrets env
command contains different formats that get generated when it's not running a command. We need to add variants to these formats that include export within the file.For example the
unix
format is structured asBut the new variant will include the export keyword
This should apply to all the existing formats where applicable. So if the cmd and powershell if they have a equavalent way of exporting env variables within a script then we should have a format version for them as well.
Additional context
Tasks
unix
formatThe text was updated successfully, but these errors were encountered: