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
Hi, I am trying to use env-cmd with parameter expansion to concatenate the variable with a string.
Am I doing something wrong or is that currently impossible?
Here is an example:
.env:
VAR=World
package.json:
"echo": "env-cmd -x echo \"Hello ${VAR}!\""
Expected Output: Hello World!
Actual Output: Hello !
The text was updated successfully, but these errors were encountered:
Hi, I am trying to use
env-cmd
with parameter expansion to concatenate the variable with a string.Am I doing something wrong or is that currently impossible?
Here is an example:
.env:
package.json:
Expected Output:
Hello World!
Actual Output:
Hello !
The text was updated successfully, but these errors were encountered: