Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2018-11-21 14:02:39 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2018-11-21 14:02:39 +0300
commite629363dea265e52aee4011d66dc4c3380c9ab62 (patch)
tree366a6f513a1ef0314b75ef9df916b07fe0879d2e /check-handlebars-templates.sh
parent970a22f9ceb8590be661051fce0b371f532291a3 (diff)
Add Drone step to check the Handlebars templates
Now if the source templates were modified but their compiled versions were not updated the Drone job will fail. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'check-handlebars-templates.sh')
-rwxr-xr-xcheck-handlebars-templates.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/check-handlebars-templates.sh b/check-handlebars-templates.sh
new file mode 100755
index 000000000..ae1e63946
--- /dev/null
+++ b/check-handlebars-templates.sh
@@ -0,0 +1,17 @@
+#!/usr/bin/env bash
+
+REPODIR=`git rev-parse --show-toplevel`
+
+cd $REPODIR
+
+bash compile-handlebars-templates.sh || exit 1
+
+if [[ $(git diff --name-only) ]]; then
+ echo "Please submit your compiled handlebars templates"
+ echo
+ git diff
+ exit 1
+fi
+
+echo "All up to date! Carry on :D"
+exit 0