Fixes for Travis build tests failing

Signed-off-by: Simon Bailey <simon@newtriks.com>
This commit is contained in:
Simon Bailey 2014-01-08 12:41:11 +00:00
parent 82b9131275
commit c125913f16
2 changed files with 3 additions and 3 deletions

View File

@ -10,8 +10,8 @@ util.inherits(ComponentGenerator, ScriptBase);
ComponentGenerator.prototype.createComponentFile = function createComponentFile() { ComponentGenerator.prototype.createComponentFile = function createComponentFile() {
this.generateSourceAndTest( this.generateSourceAndTest(
'component', 'Component',
'spec/component', 'spec/Component',
'components' 'components'
); );
}; };

View File

@ -9,5 +9,5 @@ var MainGenerator = module.exports = function MainGenerator(args, options, confi
util.inherits(MainGenerator, ScriptBase); util.inherits(MainGenerator, ScriptBase);
MainGenerator.prototype.createAppFile = function createAppFile() { MainGenerator.prototype.createAppFile = function createAppFile() {
this.appTemplate('app', 'scripts/components/'+this.scriptAppName); this.appTemplate('App', 'scripts/components/'+this.scriptAppName);
}; };