Annotation of freem/scripts/upload-docs, revision 1.3
1.1 snw 1: #!/usr/bin/env bash
2:
1.2 snw 3: #
1.3 ! snw 4: # $Id: upload-docs,v 1.2 2025/03/16 16:10:03 snw Exp $
! 5: # Upload the current documentation to the FreeM website
1.2 snw 6: #
7: #
8: # Author: Serena Willis <snw@coherent-logic.com>
9: # Copyright (C) 1998 MUG Deutschland
10: # Copyright (C) 2025 Coherent Logic Development LLC
11: #
12: #
13: # This file is part of FreeM.
14: #
15: # FreeM is free software: you can redistribute it and/or modify
16: # it under the terms of the GNU Affero Public License as published by
17: # the Free Software Foundation, either version 3 of the License, or
18: # (at your option) any later version.
19: #
20: # FreeM is distributed in the hope that it will be useful,
21: # but WITHOUT ANY WARRANTY; without even the implied warranty of
22: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23: # GNU Affero Public License for more details.
24: #
25: # You should have received a copy of the GNU Affero Public License
26: # along with FreeM. If not, see <https://www.gnu.org/licenses/>.
27: #
1.3 ! snw 28: # $Log: upload-docs,v $
! 29: # Revision 1.2 2025/03/16 16:10:03 snw
! 30: # Add script header to doc upload script
! 31: #
1.2 snw 32: #
33: # SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
34: # SPDX-License-Identifier: AGPL-3.0-or-later
35: #
36:
37:
1.1 snw 38: PGM=$(basename $0)
39:
40: function usage() {
41: echo "usage: ${PGM} <ssh-server>"
42: exit 1
43: }
44:
45: if [[ $# != 1 ]]
46: then
47: usage
48: fi
49:
50: SSHCRED=$1
51:
52: if [[ ! -f sem.ver ]]
53: then
54: echo "${PGM}: not in the root of the freem repository"
55: exit 1
56: else
57: NEWVER=$(cat sem.ver)
58: fi
59:
60: cd doc/
61: ./crdocs.sh
62:
63: DOCDIR="//var/www/freem.coherent-logic.com/docs/${NEWVER}/"
64:
65: ssh "${SSHCRED}" "mkdir ${DOCDIR}"
66: if [[ $? != 0 ]]
67: then
68: echo "${PGM}: error creating remote directory"
69: exit 1
70: fi
71:
72: scp freem.texi freem/*.html freem.ps freem.pdf freem.info.gz "${SSHCRED}:${DOCDIR}/"
73: if [[ $? != 0 ]]
74: then
75: echo "${PGM}: error copying docs"
76: exit 1
77: fi
78:
79: make -f Makefile.orig clean
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>