source: gs3-extensions/structured-image/trunk/src/INSTALL-MIRADOR.sh@ 37045

Last change on this file since 37045 was 37043, checked in by davidb, 16 months ago

Tweaks after testing

  • Property svn:executable set to *
File size: 761 bytes
Line 
1#!/bin/bash
2
3if [ ! -d "$GSDL3HOME/ext/structured-image/" ] ; then
4 echo ""
5 echo "Creating directory:"
6 echo " $GSDL3HOME/ext/structured-image"
7 echo ""
8 mkdir "$GSDL3HOME/ext/structured-image"
9fi
10
11if [ -d "$GSDL3HOME/ext/structured-image/mirador3" ] ; then
12 echo ""
13 echo "Removing previous installation:"
14 echo " $GSDL3HOME/ext/structured-image/mirador3"
15
16 /bin/rm -rf "$GSDL3HOME/ext/structured-image/mirador3"
17fi
18
19echo ""
20echo "Installing webpack JS library for gs-annotations to:"
21echo " $GSDL3HOME/ext/structured-image/mirador3"
22
23mkdir "$GSDL3HOME/ext/structured-image/mirador3"
24
25cp -r mirador-integration-annotations-gitfork/webpack/dist-gs-annotations "$GSDL3HOME/ext/structured-image/mirador3/dist"
26
27echo ""
28
29
30
Note: See TracBrowser for help on using the repository browser.