blob: 734ae26e5191496ea90991e7ee2f66fbc02a5dc9 (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/env bash
#
# SPDX-License-Identifier: GPL-3.0-or-later
printf '\n[%s] WARNING: %s\n\n' "mkarchiso" "build.sh scripts are deprecated! Please use mkarchiso directly." >&2
_buildsh_path="$(realpath -- "$0")"
exec mkarchiso "$@" -B "${_buildsh_path%/*}" build_profile
|