Skip to content

Commit

Permalink
show messsage if invalid dir name on createDir (#889)
Browse files Browse the repository at this point in the history
* show messsage if invalid dir name on createDir

* change or to and, fix tests
  • Loading branch information
tgfjt authored and joehand committed Mar 27, 2018
1 parent 5d7a9a3 commit ba5e34a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/commands/clone.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ function clone (opts) {
// Create the directory if it doesn't exist
// If no dir is specified, we put dat in a dir with name = key
if (!opts.dir) opts.dir = key
if (!Buffer.isBuffer(opts.dir) && typeof opts.dir !== 'string') {
return bus.emit('exit:error', 'Directory path must be a string or Buffer')
}
fs.access(opts.dir, fs.F_OK, function (err) {
if (!err) {
createdDirectory = false
Expand Down

0 comments on commit ba5e34a

Please sign in to comment.