diff options
author | Will Andrews <will@FreeBSD.org> | 2002-05-16 03:24:44 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2002-05-16 03:24:44 +0000 |
commit | 7fde76008162fb70dad1dd3a55826303844e99ec (patch) | |
tree | fa422c05998f574d16b4916c8c01261b46fe700b /Tools | |
parent | a2d1f26f296c7cdd871fa1a5c6b8f0d810ae2ced (diff) |
Notes
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/release/setup.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/scripts/release/setup.sh b/Tools/scripts/release/setup.sh index e022f97ce44e..017abd8e2407 100755 --- a/Tools/scripts/release/setup.sh +++ b/Tools/scripts/release/setup.sh @@ -2,6 +2,10 @@ # $FreeBSD$ dir=$@ +if [ -z $dir ]; then + echo "Usage: $0 <path to dir with ports and packages to split>" + exit 1 +fi if [ ! -d $dir ]; then echo "Directory not found. Aborting." exit 1 |