1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-24 16:01:26 +00:00

add tools/extract_assets.sh

This commit is contained in:
Dragorn421 2025-02-09 12:21:08 +01:00
parent bb7215b25a
commit 2843f50ea4
No known key found for this signature in database
GPG key ID: 381AEBAF3D429335

13
tools/extract_assets.sh Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env bash
# SPDX-FileCopyrightText: © 2024 ZeldaRET
# SPDX-License-Identifier: CC0-1.0
if [ $# -eq 0 ]
then
echo "Usage: $0 <version> [args...]"
exit 1
fi
v=$1
.venv/bin/python3 -m tools.assets.extract extracted/$v/baserom extracted/$v -v $v "${@:2}"