Browse Source

Merge pull request #3515 from Jeff-Tian/next

#3514: the fix for issue: 'The checking for semantic.json always fail…
pull/3632/head
Jack Lukic 8 years ago
parent
commit
7599cf8d26
2 changed files with 2 additions and 2 deletions
  1. 2
      tasks/build.js
  2. 2
      tasks/config/project/install.js

2
tasks/build.js

@ -29,7 +29,7 @@ module.exports = function(callback) {
if( !install.isSetup() ) {
console.error('Cannot find semantic.json. Run "gulp install" to set-up Semantic');
return;
return 1;
}
// check for right-to-left (RTL) language

2
tasks/config/project/install.js

@ -31,7 +31,7 @@ var when = {
// install
hasConfig: function() {
return requireDotFile('semantic.json');
return requireDotFile('semantic.json', process.cwd());
},
allowOverwrite: function(questions) {

Loading…
Cancel
Save