From bf1b269483430f1f27b239fc6ee4c3c9b0421d9d Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 11 Feb 2016 19:16:20 +0100 Subject: Add an example post-checkout hook Add a shell script to rebuild the documentation and install translations. Can be executed manually or used as a post-checkout hook in Git. Signed-off-by: Lukas Fleischer --- upgrading/post-checkout | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 upgrading/post-checkout diff --git a/upgrading/post-checkout b/upgrading/post-checkout new file mode 100755 index 00000000..7ad41cfd --- /dev/null +++ b/upgrading/post-checkout @@ -0,0 +1,4 @@ +#!/bin/sh + +( cd doc/ && make ) +( cd po/ && make && make install ) -- cgit v1.2.3-24-g4f1b