diff options
Diffstat (limited to 'scripts/update-and-validate.sh')
-rwxr-xr-x | scripts/update-and-validate.sh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/scripts/update-and-validate.sh b/scripts/update-and-validate.sh new file mode 100755 index 00000000..08bbf088 --- /dev/null +++ b/scripts/update-and-validate.sh @@ -0,0 +1,28 @@ +#!/bin/sh +# Used on release-check.swamid.se + +update() +{ + echo "git pull" + git pull || return $? + echo + + #echo "make aggregate" + #make aggregate || return $? + #echo + + #echo "make (2007) web site for backwards compat" + #env SWAMID_MK_CONFIG=swamid2007.mk make web || return $? + #echo + + #echo "make (2016)" + #env SWAMID_MK_CONFIG=swamid2016.mk make || return $? + #echo + + #echo "make (2016 - test)" + #env SWAMID_MK_CONFIG=swamid2016-test.mk make # Allow this to fail + #echo +} + +cd /opt/swamid-metadata || exit 1 +update |