Browse Source

Contextual newlines added

master
Leo Lamprecht 8 years ago
parent
commit
b997c71dd4
No known key found for this signature in database GPG Key ID: B08517883D5E0E10
  1. 1
      bin/now-alias.js
  2. 1
      bin/now-dns.js
  3. 1
      bin/now-domains.js
  4. 1
      lib/index.js

1
bin/now-alias.js

@ -25,6 +25,7 @@ const argv = minimist(process.argv.slice(2), {
token: 't'
}
})
const subcommand = argv._[0]
// options

1
bin/now-dns.js

@ -24,6 +24,7 @@ const argv = minimist(process.argv.slice(2), {
token: 't'
}
})
const subcommand = argv._[0]
// options

1
bin/now-domains.js

@ -26,6 +26,7 @@ const argv = minimist(process.argv.slice(2), {
token: 't'
}
})
const subcommand = argv._[0]
// options

1
lib/index.js

@ -129,6 +129,7 @@ module.exports = class Now extends EventEmitter {
// array has a group of files with the same sha but different path
const files = await Promise.all(Array.prototype.concat.apply([], await Promise.all((Array.from(this._files)).map(async ([sha, {data, names}]) => {
const statFn = followSymlinks ? stat : lstat
return await names.map(async name => {
let mode

Loading…
Cancel
Save