zapty / forever-service

Provision node script as a service via forever, allowing it to automatically start on boot, working across various Linux distros and OS
https://github.com/zapty/forever-service
MIT License
594 stars 65 forks source link

Accept env vars with "=" at value #86

Closed paivaric closed 7 years ago

paivaric commented 7 years ago

Examples:

"a=b=c".split(/=(.*)/) ["a", "b=c", ""]

"a=".split(/=(.*)/) ["a", "", ""]

arvind-agarwal commented 7 years ago

Fixed in latest release 0.5.10