summaryrefslogtreecommitdiff
path: root/doxygen/builder/rtems-doxygen-publish-cron
blob: a3d42515d9a96a06d7e07f04059dd0e9e893e5f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /bin/sh
#
# RTEMS Documentation Project
#
# Copyright 2017 Chris Johns <chrisj@rtems.org>
# All rights reserved
#
# Public domain
#

#
# Exit on error.
#
set -e

#
# We run where the script is located.
#
cd $(dirname $0)

./rtems-doxygen-download
./rtems-doxygen-publish

exit 0