summaryrefslogtreecommitdiff
path: root/scripts/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/update.sh')
-rwxr-xr-xscripts/update.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/scripts/update.sh b/scripts/update.sh
deleted file mode 100755
index 5d1a9a2f..00000000
--- a/scripts/update.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/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
-output=$(update 2>&1)
-ret=$?
-if [ "$ret" != "0" ] ; then
- echo "$output"
- exit $ret
-fi