From a8fed1b69b471688d7ba6c9440aefe3bb59f5e32 Mon Sep 17 00:00:00 2001 From: hacksalot Date: Mon, 4 Jan 2016 04:15:13 -0500 Subject: [PATCH] Add missing semicolon. --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index d5c9ca2..700cfa2 100644 --- a/src/index.js +++ b/src/index.js @@ -187,7 +187,7 @@ function loadOptions( opts ) { } // Merge in command-line options - opts = EXTEND( true, opts, this.opts() ) + opts = EXTEND( true, opts, this.opts() ); opts.silent = this.parent.silent; _opts = opts; }