diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 1998-09-19 00:48:34 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 1998-09-19 00:48:34 +0000 |
commit | 738091d6f55beccca1a22d90a08fd2330d25c920 (patch) | |
tree | 2cdbe3e05cc709e7e37f429f236db2ac2edee8fb /distrib/sets/maketars | |
parent | 4a9775defd979cb0f464bbb007a1b477b21bd53c (diff) |
use OSrev
Diffstat (limited to 'distrib/sets/maketars')
-rw-r--r-- | distrib/sets/maketars | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/distrib/sets/maketars b/distrib/sets/maketars index 68f2c19e9dd..1e00c4ba560 100644 --- a/distrib/sets/maketars +++ b/distrib/sets/maketars @@ -1,6 +1,11 @@ #!/bin/csh -f -set RELEASE=24 +set RELEASE=$1 + +if ( "X${RELEASE}" == "X" ) then + echo "Usage: `basename $0` <OSREVISION>" + exit 1 +endif if (! $?RELEASEDIR) then echo RELEASEDIR must be set |