mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-20 08:28:51 +03:00

1. Refactored Nix devshell/package to make it easier to keep LD_LIBRARY_PATH & buildInputs in sync (plus make it easier to re-use in other Nix environment). 2. Added a CI job to ensure that Blueprints are formatted correctly and that they will compile using `blueprint-compiler` 0.16.0. 3. Reformatted all Blueprints with `blueprint-compiler format`.
7 lines
200 B
Bash
Executable File
7 lines
200 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o nounset -o pipefail -o errexit
|
|
|
|
find src -name \*.blp -exec blueprint-compiler format {} \+
|
|
find src -name \*.blp -exec blueprint-compiler compile --output=/dev/null {} \;
|