summaryrefslogtreecommitdiff
path: root/git-hooks/pre-commit
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-10-22 21:12:32 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-10-22 21:14:06 -0400
commite7d4b6d7ddbcd0128e47476e6cd1d824a1929f3c (patch)
treec8f134624171bdefa1010fe6a0cd374ea0901c2f /git-hooks/pre-commit
parent6430854352745f45281021c305b4e350bc92d535 (diff)
Let `cargo` handle building the UI, where possible.
This allows skipping the `target/ui` rebuild if the UI has not changed, which has otherwise been a bit of a source of drag on my development speed.
Diffstat (limited to 'git-hooks/pre-commit')
-rwxr-xr-xgit-hooks/pre-commit2
1 files changed, 0 insertions, 2 deletions
diff --git a/git-hooks/pre-commit b/git-hooks/pre-commit
index cafdb8d..cd2f9ee 100755
--- a/git-hooks/pre-commit
+++ b/git-hooks/pre-commit
@@ -4,8 +4,6 @@
# run. It gets old fast. That's why this uses `cargo check` and not `cargo
# test`, for example.
-# Make sure the UI is up to date.
-tools/build-ui
# Make sure Cargo.lock is up to date with Cargo.toml.
cargo update --locked --workspace
# Make sure there are no screamers in the code.