Files
Yanis42 5360ed81c1 review
2024-08-28 02:12:15 +02:00

12 lines
325 B
Bash
Executable File

#!/bin/bash
# Wrapper for `dtk dol apply` to automatically update dtk symbols from the elf.
# Usage: ./dol-apply [VERSION]
# If VERSION is not provided, it defaults to oot-j.
set -euo pipefail
VERSION=${1:-oot-j}
ninja "build/$VERSION/ok"
build/tools/dtk dol apply "config/$VERSION/config.yml" "build/$VERSION/oot-vc.elf"