blob: 7c2ef59562d88bd1241cdeee6d8b7f85e9863836 (
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
25
26
27
28
29
30
31
32
33
|
#!/usr/bin/env bash
#
# SPDX-FileCopyrightText: 2021 René de Hesselle <dehesselle@web.de>
#
# SPDX-License-Identifier: GPL-2.0-or-later
### description ################################################################
# Compile and package Inkscape
### shellcheck #################################################################
# Nothing here.
### dependencies ###############################################################
# Nothing here.
### variables ##################################################################
SELF_DIR=$(dirname "${BASH_SOURCE[0]}")
### functions ##################################################################
# Nothing here.
### main #######################################################################
set -e
for script in "$SELF_DIR"/2??-*.sh; do
$script
done
|