From c2b40d4a7a94659370854215f64f58f667a205cc Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Wed, 13 Aug 2014 10:37:13 -0400 Subject: [PATCH] add mocks --- util/build.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/util/build.js b/util/build.js index cf90b861e..a8215e977 100644 --- a/util/build.js +++ b/util/build.js @@ -128,10 +128,10 @@ if (require.main === module) { }; var program = require('commander'); program - .version('0.0.1') - .option('-d, --dontminify', 'Development. Don\'t minify the code.') - .option('-o, --stdout', 'Specify output as stdout') - .parse(process.argv); + .version('0.0.1') + .option('-d, --debug', 'Development. Don\'t minify the codem and include debug packages.') + .option('-o, --stdout', 'Specify output as stdout') + .parse(process.argv); createVersion(); var copayBundle = createBundle(program);