mirror of
https://github.com/encounter/oot-vc.git
synced 2026-03-30 11:33:51 -07:00
12 lines
317 B
Bash
Executable File
12 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Wrapper for `dtk dol diff` to locate the first diff in the dol.
|
|
# Usage: ./dol-diff [VERSION]
|
|
# If VERSION is not provided, it defaults to oot-j.
|
|
|
|
set -euo pipefail
|
|
|
|
VERSION=${1:-oot-j}
|
|
ninja "build/$VERSION/oot-vc.elf"
|
|
build/tools/dtk dol diff "config/$VERSION/config.yml" "build/$VERSION/oot-vc.elf"
|