summaryrefslogtreecommitdiff
path: root/doxygen/builder/rtems-doxygen-build-cron
blob: f49425a146e89c2f240f01f1ef506c4a4545b131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /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-upload

exit 0