It looks like two files in he repository do not have the correct case:
src/all/background_page/error/InvalidMasterPasswordError.js is using CamelCase instead of lowerCamelCase (the file name should be invalidMasterPasswordError.js)
src/all/background_page/model/gpgAuth.js is using lowerCamelCase but shouldn't (the file name should be gpgauth.js)
Fixing those two files by either renaming them or creating symlinks also fixes the build.
What you expected to happen
The build should succeed when cloning the repository.
The browser extension doesn't build by default
What you did
Steps to reproduce :
At this point, we see a first build error :
Even though we know that the build won't succeed, we can still try with
grunt --force
:What happened
It looks like two files in he repository do not have the correct case:
src/all/background_page/error/InvalidMasterPasswordError.js
is using CamelCase instead of lowerCamelCase (the file name should beinvalidMasterPasswordError.js
)src/all/background_page/model/gpgAuth.js
is using lowerCamelCase but shouldn't (the file name should begpgauth.js
)Fixing those two files by either renaming them or creating symlinks also fixes the build.
What you expected to happen
The build should succeed when cloning the repository.