mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
9 lines
243 B
Bash
Executable file
9 lines
243 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
# Compile Handlebars templates
|
|
make compile-handlebars-templates
|
|
|
|
git status
|
|
|
|
bash -c "[[ ! \"`git status --porcelain js/views/templates.js`\" ]] || ( echo 'Uncommitted changes in compiled Handlebar templates' && exit 1 )"
|