aboutsummaryrefslogtreecommitdiff
path: root/util/pkgrepo
blob: 1f521c6fda805108abb2a70668c79fba4e40674d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
#
#  PKGREPO - Get the repository base URI, either from the environment
#  variable 'IRAF_REPO' or the default.


if [ -z "$IRAF_REPO" ]; then
   /bin/echo "ftp://iraf.noao.edu/iraf/v216/REPO"
else
   /bin/echo $IRAF_REPO
fi

exit 0