blob: 51a1a129d97a16cca8b8aa079a3dbe7b801beb97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh -e
#
# mbuto: Minimal Builder Using Terse Options
#
# hooks/pre-push - Run demos, render man page to HTML, upload everything
#
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# Copyright (c) 2022 Red Hat GmbH
# Author: Stefano Brivio <sbrivio@redhat.com>
#
# cp hooks/pre-push .git/hooks/pre-push
web/demo.sh
groff -mandoc -T html mbuto.1 > mbuto.1.html
scp *.cast *.cast.gz mbuto.1.html mbuto.sh:/var/www/mbuto/static/
|