Set config vars including special chars, like , and = .
$ ./iruka set FOO=hoge,fuga BAR=piyo=quz
BAR: piyo=quz
FOO: hoge,fuga
This PR changes the form of arguments of set and unset.
Currently multiple variables are separated by , (comma), however in this PR they are separated by (space). This is the same form of heroku/hk.
It is because parsing comma-separated arguments (e.g. FOO="hoge,fuga",BAR="piyo") properly is too difficult.
Close #24
WHAT
Set config vars including special chars, like
,
and=
.This PR changes the form of arguments of
set
andunset
. Currently multiple variables are separated by, (comma)
, however in this PR they are separated by(space)
. This is the same form of heroku/hk. It is because parsing comma-separated arguments (e.g.FOO="hoge,fuga",BAR="piyo"
) properly is too difficult.