Skip to content

Commit

Permalink
Fixes #5873: Non-escaped quotes in environment-variables.cf cause CFE…
Browse files Browse the repository at this point in the history
…ngine parsing error
  • Loading branch information
jooooooon committed Nov 29, 2014
1 parent 5f5437a commit 80c8709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion techniques/system/common/1.0/environment-variables.st
Expand Up @@ -32,7 +32,7 @@ env | sed 's/=/]=/' |sed 's/^/=node.env[/'";

windows::
"script" string => "@echo off
for /F "tokens=1,2* delims==" %%G IN ('SET') DO ECHO =node.env[%%G]=%%H";
for /F \"tokens=1,2* delims==\" %%G IN ('SET') DO ECHO =node.env[%%G]=%%H";

files:
!windows::
Expand Down

0 comments on commit 80c8709

Please sign in to comment.