Changeset 7787 for trunk


Ignore:
Timestamp:
2004-07-20T16:51:24+12:00 (20 years ago)
Author:
kjdon
Message:

no longer have indexfiles.tgz, now we have index.zip, metadata.zip, import.zip, for the demo colls

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/gs3-prepare.sh

    r7779 r7787  
    4141#setup sample collections
    4242cd web/sites/localsite/collect
    43 
     43# unpack import, index and metadata
    4444for f in */index; do
    4545  cd $f
    46   if test -f indexfiles.tgz; then
    47     tar xzf indexfiles.tgz
     46  if test -f index.zip; then
     47    unzip index.zip
     48  fi
     49  cd ../../
     50done
     51
     52for f in */import; do
     53  cd $f
     54  if test -f import.zip; then
     55    unzip import.zip
     56  fi
     57  cd ../../
     58done
     59
     60for f in */metadata; do
     61  cd $f
     62  if test -f metadata.zip; then
     63    unzip metadata.zip
    4864  fi
    4965  cd ../../
Note: See TracChangeset for help on using the changeset viewer.