2024-03-05 11:35:25 +00:00
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
|
|
|
REAL_SCRIPT="$(realpath "${0}")"
|
2024-03-07 09:04:05 +00:00
|
|
|
DEBUG_DIR="$(dirname "${REAL_SCRIPT}")"
|
|
|
|
# shellcheck source=common.sh
|
|
|
|
. "${DEBUG_DIR}/common.sh"
|
2024-03-05 11:35:25 +00:00
|
|
|
|
|
|
|
KRATA_BUILD_INITRD=1 build_and_run kratad "${@}"
|