blob: 9de1037a8cde72833cd61cbdfc25db536f960322 (
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 $*
|