summaryrefslogtreecommitdiff
path: root/scripts/update.sh
diff options
context:
space:
mode:
authorBjörn Mattsson <bjorn@sunet.se>2023-03-06 11:22:05 +0100
committerBjörn Mattsson <bjorn@sunet.se>2023-03-06 11:22:05 +0100
commit467dbdbf3d7212e25ee69daeaadd8adba7c7c5b8 (patch)
treed3576d5f2d4b5cc676c0a12ef8f8c3c83b474bf5 /scripts/update.sh
parentbc1d55080e5d42e6ef2bba892d640aa8f68bbc90 (diff)
Moved files to make ths repo signed
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