Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ramybenaroya committed Jul 19, 2016
1 parent dc4a51a commit 386f2fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module.exports = {
appPath = 'app';
}

if (new RegExp('^' + rootPath).test(appPath) || appPath.indexOf(appPath) === 0){
if (new RegExp('^' + rootPath).test(appPath) || (appPath.indexOf(':\\') !== -1 && appPath.indexOf(appPath) === 0)){
contentFilePath = path.join(appPath, content.file);
} else {
contentFilePath = path.join(rootPath, appPath, content.file);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-index",
"version": "0.2.7",
"version": "0.2.8",
"description": "Ember addon for manipulating index.html.",
"directories": {
"doc": "doc",
Expand Down

0 comments on commit 386f2fd

Please sign in to comment.