summaryrefslogtreecommitdiff
path: root/metadata/scripts/update-cron.sh
blob: 8f9ed813388cae80d60244d7c6e86e5d7364f4c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

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/metadata || exit 1
update