aboutsummaryrefslogtreecommitdiff
path: root/go
diff options
context:
space:
mode:
Diffstat (limited to 'go')
-rwxr-xr-xgo46
1 files changed, 0 insertions, 46 deletions
diff --git a/go b/go
deleted file mode 100755
index f84253c..0000000
--- a/go
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/sh
-
-n=21
-
-rm -rf build
-
-p=`which python`
-
-case "$p"
-in
-/usr/stsci/*) : ;;
-*)
- echo path = $PATH
- echo why is python set to $p
- exit 1
- ;;
-esac
-
-unset PYTHONPATH
-
-there=/ssbwebv1/data2/steuermann/s$n
-
-rm -rf $there
-
-python setup.py $quiet install --home $there
-
-rm -f /eng/ssb/websites/ssb/steuermann/s$n.cgi
-
-ln -s $there/bin/steuermann_report.cgi /eng/ssb/websites/ssb/steuermann/s$n.cgi
-
-if grep -q s$n.cgi /eng/ssb/websites/ssb/index.html
-then
- :
-else
- id=/eng/ssb/websites/ssb
-
- sed 's?<\!--STEUERMANN-->?<\!--STEUERMANN--><a href="steuermann/s'$n'.cgi">s'$n'</a> <br> ?' < $id/index.html > tmp
-
- cp tmp $id/index.html
- ls -l $id/index.html
-
-fi
-
-chgrp -R ssb $there
-
-