blob: a5dc135a28a699410676482304be9619d0bdf300 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# (c) 2017 Jan-Simon Moeller dl9pf(at)gmx.de
# License GPLv2
################################################################################
## Add archiver
################################################################################
# only morty and newer support the cve-check, so check for master branch
if [ x"master" = x"$GERRIT_BRANCH" ] ; then
# archive sources within tmp/deploy/
echo '' >> conf/auto.conf
echo 'INHERIT += "cve-check"' >> conf/auto.conf
fi
|