env-diff icon indicating copy to clipboard operation
env-diff copied to clipboard

Remove ksort on var name on actualize

Open delphiki opened this issue 6 years ago • 0 comments
trafficstars

The ksort would break the .env file in the following case:

FOO=anything
BAR=${FOO}

The actualize method would have break the dependencies between env vars and generate something like:

BAR=${FOO} # FOO is undefined here
FOO=anything

delphiki avatar May 06 '19 12:05 delphiki