compile-handlebars-templates.sh 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #!/usr/bin/env bash
  2. REPODIR=`git rev-parse --show-toplevel`
  3. cd $REPODIR
  4. # Settings
  5. handlebars -n OC.Settings.Templates settings/js/templates -f settings/js/templates.js
  6. # Systemtags
  7. handlebars -n OC.SystemTags.Templates core/js/systemtags/templates -f core/js/systemtags/templates.js
  8. # Share
  9. handlebars -n OC.Share.Templates core/js/share -f core/js/sharetemplates.js
  10. # Files app
  11. handlebars -n OCA.Files.Templates apps/files/js/templates -f apps/files/js/templates.js
  12. # Comments app
  13. handlebars -n OCA.Comments.Templates apps/comments/js/templates -f apps/comments/js/templates.js
  14. # Versions app
  15. handlebars -n OCA.Versions.Templates apps/files_versions/js/templates -f apps/files_versions/js/templates.js
  16. # Workflowengine
  17. handlebars -n OCA.WorkflowEngine.Templates apps/workflowengine/js/templates -f apps/workflowengine/js/templates.js
  18. # Sharing
  19. handlebars -n OCA.Sharing.Templates apps/files_sharing/js/templates -f apps/files_sharing/js/templates.js
  20. # Files external
  21. handlebars -n OCA.Files_External.Templates apps/files_external/js/templates -f apps/files_external/js/templates.js
  22. if [[ $(git diff --name-only) ]]; then
  23. echo "Please submit your compiled handlebars templates"
  24. echo
  25. git diff
  26. exit 1
  27. fi
  28. echo "All up to date! Carry on :D"
  29. exit 0