Deis Bot

Results 283 comments of Deis Bot

_From @bacongobbler on June 18, 2016 7:14_ same answer as I laid out in https://github.com/deis/deis/issues/4512; we should move to a shared library or follow the spec laid out in https://github.com/bkeepers/dotenv#usage.

_From @benwilber on September 19, 2015 19:27_ @sstarcher can you show an example of a multiline env variable? from the [dotenv docs](https://github.com/bkeepers/dotenv#usage), you can double-quote multiline strings and use literal...

_From @sstarcher on September 19, 2015 21:35_ @benwilber it seems that deis config:pull was not double quoting the multiline string.

_From @sstarcher on September 19, 2015 23:48_ I just tested adding a double quote to the .env file that was spit out by deis config:pull, it acts the same was...

_From @benwilber on September 20, 2015 0:1_ @sstarcher are you able to provide a couple quick examples of what you're seeing from `deis config:pull` and the same thing failing for...

_From @sstarcher on September 20, 2015 0:42_ When I refer to Deis I'm referring to the platform version installed. All of the below is using deis client 1.10.0 In Deis...

_From @sstarcher on September 20, 2015 1:37_ If I downgrade the deis client to 1.9.0 deis config:set with a multiline variable works and deis config:list shows the multiline variable. If...

_From @Joshua-Anderson on September 20, 2015 2:30_ This is a bug with the new go client. I didn't consider multi line variables when writing and they're not properly handled. You...

_From @Joshua-Anderson on September 20, 2015 3:2_ I fixed the ``` deis config:set TEST="multi line var" ``` issue in #4513. I'm not sure what the best approach for solving multi...

_From @sstarcher on September 20, 2015 14:41_ Could you take the naive approach and assume if you pass it through your regex and it does not match var=value than it...