Changeset 37291 for main


Ignore:
Timestamp:
2023-02-07T23:14:16+13:00 (15 months ago)
Author:
davidb
Message:

Check to avoid complication of trying to use Greenstone's WGETRC config file, while it is still in the process of compiling up all the source code, and so the wget that has been found is not the one in Greenstone, and the config files in WGETRC do not yet exist

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/ext/list-extensions.sh

    r36836 r37291  
    11#!/bin/bash
    22
     3if [ "x$WGETRC" != "x" ] ; then
     4
     5    wgetrc_dir=${WGETRC%/*}
     6
     7    which_wget=`which wget`
     8    wget_dir=${which_wget%/*}
     9
     10    if [ $wgetrc_dir != $wget_dir ] ; then
     11    echo "+--------" >&2
     12    echo "+ Located wget is not the Greenstone one" >&2
     13    echo "+ Temporarily setting:"                   >&2
     14    echo "+     WGETRC=$WGETRC"                     >&2
     15    echo "+ to be empty"                            >&2
     16    echo "+--------" >&2
     17    export WGETRC=
     18    fi
     19fi
     20
     21echo "GS3 Extensions: "
    322
    423wget --no-check-certificate -q -O - https://svn.greenstone.org/gs3-extensions/ | \
    524    grep '<li>' | \
    6     sed 's/^.*href="\(.*\)\/".*$/\1/' |
     25    sed 's/^.*href="\(.*\)\/".*$/  \1/' |
    726    grep -v '\.\.'
    827
Note: See TracChangeset for help on using the changeset viewer.