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


if ($?IRAF_REPO) then
   echo $IRAF_REPO
else
   echo "ftp://iraf.noao.edu/iraf/v216/REPO"
endif

exit 0