blob: 98e5aac9f7988813ee2b724477eec58f7d0baf21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /usr/bin/env bash
# Stage build2 to cppget1 host.
#
# Usage: publish [<rsync-options>]
#
usage="$0 [<rsync-options>]"
trap 'exit 1' ERR
cppget.org/publish cppget.org/repository/1/ cppget1:/var/bpkg/1/ $*
|