blob: 0573599994c4260702e54498ae61628fe342e2e3 (
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 "$@" "${_buildsh_path%/*}"
|