Skip to content

Commit

Permalink
Add --no-glob option to cli
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Feb 18, 2017
1 parent 2af08bb commit 0fac5f7
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions bin.js
Expand Up @@ -4,16 +4,21 @@ var rimraf = require('./')

var help = false
var dashdash = false
var noglob = false
var args = process.argv.slice(2).filter(function(arg) {
if (dashdash)
return !!arg
else if (arg === '--')
dashdash = true
else if (arg === '--no-glob' || arg === '-G')
noglob = true
else if (arg === '--glob' || arg === '-g')
noglob = false
else if (arg.match(/^(-+|\/)(h(elp)?|\?)$/))
help = true
else
return !!arg
});
})

if (help || args.length === 0) {
// If they didn't ask for help, then this is not a "success"
Expand All @@ -24,15 +29,20 @@ if (help || args.length === 0) {
log('')
log('Options:')
log('')
log(' -h, --help Display this usage info')
log(' -h, --help Display this usage info')
log(' -G, --no-glob Do not expand glob patterns in arguments')
log(' -g, --glob Expand glob patterns in arguments (default)')
process.exit(help ? 0 : 1)
} else
go(0)

function go (n) {
if (n >= args.length)
return
rimraf(args[n], function (er) {
var options = {}
if (noglob)
options = { glob: false }
rimraf(args[n], options, function (er) {
if (er)
throw er
go(n+1)
Expand Down

0 comments on commit 0fac5f7

Please sign in to comment.