diff options
author | kris <kris@FreeBSD.org> | 2005-01-07 07:11:51 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-01-07 07:11:51 +0800 |
commit | f65e9aeb27dcf3dc3d3fbb7b07b0e38046669884 (patch) | |
tree | 2be9674a8f6c5a235f7375ba3c192ccf684e8629 /Tools | |
parent | ac58789ff612b51512dc9511e7a7116c6e0e1bfa (diff) | |
download | freebsd-ports-graphics-f65e9aeb27dcf3dc3d3fbb7b07b0e38046669884.tar.gz freebsd-ports-graphics-f65e9aeb27dcf3dc3d3fbb7b07b0e38046669884.tar.zst freebsd-ports-graphics-f65e9aeb27dcf3dc3d3fbb7b07b0e38046669884.zip |
Always set up the bindist-${hostname}.tar file since it's usually small.
This should probably be changed to only update it if it changes.
Approved by: portmgr (self)
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/setupnode | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/setupnode b/Tools/portbuild/scripts/setupnode index 4517dff272d..a61c4edebfd 100755 --- a/Tools/portbuild/scripts/setupnode +++ b/Tools/portbuild/scripts/setupnode @@ -38,9 +38,9 @@ if [ "$nocopy" = 0 ]; then echo "copying bindist to $(hostname)" if [ ${disconnected} = 0 ]; then cp -p ${pb}/${arch}/${branch}/tarballs/bindist.tar ${tmpdir}/${branch}/tarballs - cp -p ${pb}/${arch}/${branch}/tarballs/bindist-$(hostname).tar ${tmpdir}/${branch}/tarballs fi fi + cp -p ${pb}/${arch}/${branch}/tarballs/bindist-$(hostname).tar ${tmpdir}/${branch}/tarballs if [ ${disconnected} = 1 ]; then # Prepare all directories, they will be populated by a rsync push from the master mkdir -p ${pb}/scripts ${pb}/${arch}/${branch}/ports ${pb}/${arch}/${branch}/src ${pb}/${arch}/${branch}/src ${pb}/${arch}/${branch}/tarballs |