Browse Source

fix the initial value of the env option (#131)

master
Naoyuki Kanezawa 8 years ago
committed by Guillermo Rauch
parent
commit
85fc7fc336
  1. 2
      bin/now-deploy

2
bin/now-deploy

@ -239,7 +239,7 @@ async function sync (token) {
const now = new Now(apiUrl, token, { debug });
const envs = [].concat(argv.env);
const envs = [].concat(argv.env || []);
let secrets;
const findSecret = async (uidOrName) => {

Loading…
Cancel
Save