aboutsummaryrefslogtreecommitdiffstats
path: root/mkasc.sh
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-07-28 13:05:54 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-07-28 14:10:31 -0300
commit200f389ed0f56ba42160fe135e3701757a8df94c (patch)
tree644ebe2eccff1991e11ff1f6391df0f60e9978f1 /mkasc.sh
parentbuild: fix shellcheck issues in mkrpm.sh/compile.sh (diff)
downloadfirejail-200f389ed0f56ba42160fe135e3701757a8df94c.tar.gz
firejail-200f389ed0f56ba42160fe135e3701757a8df94c.tar.zst
firejail-200f389ed0f56ba42160fe135e3701757a8df94c.zip
build: use config.sh in more scripts
This removes the need to manually pass variables such as `$(TARNAME)` and `$(VERSION)` to shell scripts in the root Makefile. Relates to #5140.
Diffstat (limited to 'mkasc.sh')
-rwxr-xr-xmkasc.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkasc.sh b/mkasc.sh
index 62c1b1180..0314c20e5 100755
--- a/mkasc.sh
+++ b/mkasc.sh
@@ -3,7 +3,7 @@
3# Copyright (C) 2014-2023 Firejail Authors 3# Copyright (C) 2014-2023 Firejail Authors
4# License GPL v2 4# License GPL v2
5 5
6. "$(dirname "$0")/config.sh" 6. "$(dirname "$0")/config.sh" || exit 1
7 7
8printf 'Calculating SHA256 for all files in /transfer - %s version %s' "$TARNAME" "$VERSION" 8printf 'Calculating SHA256 for all files in /transfer - %s version %s' "$TARNAME" "$VERSION"
9 9