forked from zenodo/zenodo-docs-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtests.sh
executable file
·49 lines (46 loc) · 1.52 KB
/
runtests.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env bash
#
# Copyright (C) 2017-2021 CERN.
#
# Zenodo is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# Zenodo is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Zenodo; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
#
# In applying this license, CERN does not waive the privileges and immunities
# granted to it by virtue of its status as an Intergovernmental Organization or
# submit itself to any jurisdiction.
set -e
cd databags
mv navigation.json navigation_local.json
mv prefix.ini prefix_local.ini
ln -s navigation_deploy.json navigation.json
ln -s prefix_deploy.ini prefix.ini
cd ..
mv content/ content_root/
ln -s content_root/help content
lektor clean --yes
lektor build
rm content
ln -s content_root/about content
lektor clean --yes
lektor build
rm content
ln -s content_root/blog content
lektor clean --yes
lektor build
rm content
mv content_root/ content/
rm databags/navigation.json
rm databags/prefix.ini
mv databags/navigation_local.json databags/navigation.json
mv databags/prefix_local.ini databags/prefix.ini