Skip to content
This repository has been archived by the owner on May 2, 2020. It is now read-only.

Commit

Permalink
fixes #762
Browse files Browse the repository at this point in the history
  • Loading branch information
scriptPilot authored and scriptPilot committed Jan 10, 2018
1 parent 4769668 commit 5fec240
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

> This page is part of the [App Framework Documentation](DOCUMENTATION.md)
## Next version

### Bug-fixes

- [x] [#762 - Error "Cannot find Framework7-Vue folder"](https://github.com/scriptPilot/app-framework/issues/762)

## Version 1.19.2

Released 2017-01-03
Expand Down
4 changes: 3 additions & 1 deletion scripts/f7vue-update.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ if (env.installed === true) {
}

// Check Framework7-Vue source folder
let source = abs(__dirname, '../../Framework7-Vue')
const sourceA = abs(__dirname, '../../Framework7-Vue')
const sourceB = abs(__dirname, '../../framework7-vue')
let source = found(sourceA) ? sourceA : sourceB
if (!found(source)) {
alert('Cannot find Framework7-Vue folder.', 'error')
}
Expand Down

0 comments on commit 5fec240

Please sign in to comment.