diff options
author | asami <asami@FreeBSD.org> | 1999-07-14 13:58:12 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1999-07-14 13:58:12 +0800 |
commit | fff50219cc03ccb802357bc5bb3ff22a8bc813b9 (patch) | |
tree | f4767ba2e0b099fd81c8a27a228edcd6f5d479ab /Tools | |
parent | e5e1b0da29f7ca1705896aa3341681197486fbbe (diff) | |
download | freebsd-ports-gnome-fff50219cc03ccb802357bc5bb3ff22a8bc813b9.tar.gz freebsd-ports-gnome-fff50219cc03ccb802357bc5bb3ff22a8bc813b9.tar.zst freebsd-ports-gnome-fff50219cc03ccb802357bc5bb3ff22a8bc813b9.zip |
Move message about skipping missing packages into the right else clause.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/portbuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/portbuild/scripts/portbuild b/Tools/portbuild/scripts/portbuild index 80037a3df410..77f7b2085393 100755 --- a/Tools/portbuild/scripts/portbuild +++ b/Tools/portbuild/scripts/portbuild @@ -135,9 +135,9 @@ while [ $# -gt 0 ]; do if [ ! -f ${chroot}/tmp/depends/$1 ]; then echo "copying package $1 for ${pkgname}" scp -p $master:${packages}/All/$1 ${chroot}/tmp/depends - else - echo "skipping package $1 for ${pkgname} since it is missing" fi + else + echo "skipping package $1 for ${pkgname} since it is missing" fi shift done |