Browse Source

now-deploy: do not attempt to unescape non-string env values

master
Guillermo Rauch 9 years ago
parent
commit
bf685a0dde
  1. 4
      bin/now-deploy

4
bin/now-deploy

@ -301,8 +301,10 @@ async function sync (token) {
return [ return [
key, key,
typeof val === 'string'
// add support for escaping the @ as \@ // add support for escaping the @ as \@
val.replace(/^\\@/, '@') ? val.replace(/^\\@/, '@')
: val
]; ];
})); }));

Loading…
Cancel
Save