summaryrefslogtreecommitdiff
path: root/scripts/update-cron.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/update-cron.sh')
-rwxr-xr-xscripts/update-cron.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/scripts/update-cron.sh b/scripts/update-cron.sh
deleted file mode 100755
index f00daa03..00000000
--- a/scripts/update-cron.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/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/swamid-metadata || exit 1
-update