1
0
mirror of http://git.whoc.org.uk/git/password-manager.git synced 2025-10-29 02:17:36 +01:00

Fixed build scripts to correctly handle manifest.appcache

This commit is contained in:
Giulio Cesare Solaroli
2015-09-10 15:13:26 +02:00
parent a19c9c6ee4
commit e161d4d46b
8 changed files with 11 additions and 10 deletions

View File

@@ -42,7 +42,7 @@ class ChecksumBuilder(BackendBuilder):
index = self.configureIndexContent(frontend.assemble())
self.writeToFolder(self.frontEndTempFolder(), os.path.join(frontend.module, 'index' + submoduleExtension + '.html'), index)
frontend.copyResourcesToFolder(self.frontEndTempFolder())
frontend.copyResourcesToFolder(self.frontEndTempFolder(), self.settings)
self.logChecksums(index, "[" + self.name() + " - " + frontend.module + "] index" + submoduleExtension + ".html checksum")
print ""

View File

@@ -39,7 +39,7 @@ class DevBuilder(BackendBuilder):
submoduleExtension = '.' + frontend.submodule
main.createFolder(os.path.join(self.frontEndTempFolder(), frontend.module))
frontend.copyResourcesToFolder(self.frontEndTempFolder())
frontend.copyResourcesToFolder(self.frontEndTempFolder(), self.settings)
index = self.configureIndexContent(frontend.assemble(assemblyMode='DEBUG', versionType='DEBUG'))
self.writeToFolder(self.frontEndTempFolder(), os.path.join(frontend.module, 'index' + submoduleExtension + '.html'), index)