From c125913f166d1de36281d9f0bd0d9a188e15a20c Mon Sep 17 00:00:00 2001 From: Simon Bailey Date: Wed, 8 Jan 2014 12:41:11 +0000 Subject: [PATCH] Fixes for Travis build tests failing Signed-off-by: Simon Bailey --- component/index.js | 4 ++-- main/index.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/component/index.js b/component/index.js index 043ac66..a5b6541 100644 --- a/component/index.js +++ b/component/index.js @@ -10,8 +10,8 @@ util.inherits(ComponentGenerator, ScriptBase); ComponentGenerator.prototype.createComponentFile = function createComponentFile() { this.generateSourceAndTest( - 'component', - 'spec/component', + 'Component', + 'spec/Component', 'components' ); }; diff --git a/main/index.js b/main/index.js index 3b39a36..96e85c5 100644 --- a/main/index.js +++ b/main/index.js @@ -9,5 +9,5 @@ var MainGenerator = module.exports = function MainGenerator(args, options, confi util.inherits(MainGenerator, ScriptBase); MainGenerator.prototype.createAppFile = function createAppFile() { - this.appTemplate('app', 'scripts/components/'+this.scriptAppName); + this.appTemplate('App', 'scripts/components/'+this.scriptAppName); };