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

update()
{
	echo "git pull"
	git pull || return $?
	echo

	echo "make aggregate"
	make aggregate || return $?
	echo

	echo "make test"
	make test || return $?
	echo

	echo "make"
	make || return $?
	echo
}

cd /opt/swamid-metadata || exit 1
exec update