summaryrefslogtreecommitdiff
path: root/docs/builder/rtems-docs-build-cron
blob: a8e95ce5d8bc1aabda10ac9ef79a555f91637ace (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)

. ./docs_builder/bin/activate
./rtems-docs-upload

exit 0