Skip to content

Commit 0bb0a15

Browse files
author
Johannes J. Schmidt
committed
fix: remove senseless multipart cli option
1 parent b0988a2 commit 0bb0a15

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ couchdb-compile [SOURCE] [OPTIONS]
4444
```
4545

4646
When `SOURCE` is omitted, the current directory will be used.
47-
`OPTIONS` can be `--index` or `--multipart`, see above.
47+
`OPTIONS` can be `--index`, see above.
4848

4949
### Example
5050

cli.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ var minimist = require('minimist')
33
var compile = require('./')
44

55
var options = minimist(process.argv.slice(2), {
6-
boolean: ['index', 'multipart']
6+
boolean: ['index']
77
})
88

9+
options.multipart = false
10+
911
var source = options._[0] || process.cwd()
1012

1113
compile(source, options, function(error, response) {

0 commit comments

Comments
 (0)