diff options
author | Satoshi Asami <asami@FreeBSD.org> | 2000-09-27 00:58:31 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 2000-09-27 00:58:31 +0000 |
commit | bf39c7d73ae843fc1e3413fefd299fa55031f95c (patch) | |
tree | da8a0351dc157bb413fe3e72509ba068bf188ae0 | |
parent | c4b86368de6e7221d3e4b409581af235532fc9e4 (diff) | |
download | ports-bf39c7d73ae843fc1e3413fefd299fa55031f95c.tar.gz ports-bf39c7d73ae843fc1e3413fefd299fa55031f95c.zip |
Make sure you're given the "start" argument before trying to start the script.
Notes
Notes:
svn path=/head/; revision=33167
-rwxr-xr-x | Tools/portbuild/scripts/reportload.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools/portbuild/scripts/reportload.sh b/Tools/portbuild/scripts/reportload.sh index 420a7d3db1db..b08a85ab31fa 100755 --- a/Tools/portbuild/scripts/reportload.sh +++ b/Tools/portbuild/scripts/reportload.sh @@ -1,5 +1,7 @@ #!/bin/sh +if [ "$1" != "start" ]; then exit; fi + b=/a/asami/portbuild s=$b/scripts/reportload |