diff options
author | Leif Johansson <leifj@sunet.se> | 2016-11-16 09:53:25 +0100 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2016-11-16 09:53:25 +0100 |
commit | 67335e4c6acf49385e672f864f989d5f560c4307 (patch) | |
tree | 893905d490414530e9828aa934759d9675b2258f /scripts | |
parent | d758f44c77c243c5bd8a011b24a3689c8ff5a74e (diff) |
run two publication flows in sequence
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/update-cron.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/update-cron.sh b/scripts/update-cron.sh index 3c387f7b..a514b65b 100755 --- a/scripts/update-cron.sh +++ b/scripts/update-cron.sh @@ -10,9 +10,13 @@ update() make aggregate || return $? echo - echo "make" - make || return $? + echo "make (2007)" + env SWAMID_MK_CONFIG=swamid2007 make || return $? echo + + echo "make (2016)" + env SWAMID_MK_CONFIG=swamid2016 make || return $? + echo } cd /opt/swamid-metadata || exit 1 |