jq is a dependency right now
Some checks failed
CI / build (push) Has been cancelled

This commit is contained in:
Marcus Huderle 2026-03-04 18:14:37 -06:00
parent 634f4b72bb
commit d4b22a7fd6
2 changed files with 6 additions and 1 deletions

View File

@ -10,7 +10,7 @@
The [prerelease version of the Linux subsystem](https://docs.microsoft.com/windows/wsl/install-legacy) available in the 1607 and 1703 releases of Windows 10 is obsolete so consider uninstalling it.
Make sure that the `build-essential`, `git`, and `libpng-dev` packages are installed. The `build-essential` package includes the `make`, `gcc-core`, and `g++` packages so they do not have to be obtained separately. MSYS2 does not include `libpng-dev` so it must be built from source.
Make sure that the `build-essential`, `git`, `jq`, and `libpng-dev` packages are installed. The `build-essential` package includes the `make`, `gcc-core`, and `g++` packages so they do not have to be obtained separately. MSYS2 does not include `libpng-dev` so it must be built from source.
Install the **devkitARM** toolchain of [devkitPro](https://devkitpro.org/wiki/Getting_Started) and add its environment variables. For Windows versions without the Linux subsystem, the devkitPro [graphical installer](https://github.com/devkitPro/installer/releases) includes a preconfigured MSYS2 environment, thus the steps below are not required.

View File

@ -11,6 +11,11 @@
set -euo pipefail
if ! command -v jq >/dev/null 2>&1; then
echo "error: 'jq' is required to build graphics rules but was not found. Install it with: sudo apt install jq" >&2
exit 1
fi
emit_rules() {
local json="$1"
local dir