source: main/trunk/greenstone3/web/get-installation-interface.sh@ 37293

Last change on this file since 37293 was 37293, checked in by davidb, 15 months ago

Specical cast handling needed for eurovision-lod

  • Property svn:executable set to *
File size: 797 bytes
Line 
1#!/bin/bash
2
3installation=$1
4
5# Looking the scriptify the following sort of svn co:
6# svn co https://svn.greenstone.org/gs3-installations/intermuse/trunk/interfaces/intermuse interfaces/intermuse
7
8echo ""
9echo "Checking out:"
10
11if [ $installation = "eurovision-lod" ] ; then
12 echo " https://svn.greenstone.org/gs3-installations/$installation/trunk/interfaces/eurovision -> interfaces/eurovision"
13 svn co https://svn.greenstone.org/gs3-installations/$installation/trunk/interfaces/eurovision interfaces/eurovision
14else
15 echo " https://svn.greenstone.org/gs3-installations/$installation/trunk/interfaces/$installation -> interfaces/$installation"
16 svn co https://svn.greenstone.org/gs3-installations/$installation/trunk/interfaces/$installation interfaces/$installation
17fi
18
19echo ""
20
21
Note: See TracBrowser for help on using the repository browser.