diff options
| author | Stefan Kreutz <mail@skreutz.com> | 2026-08-22 16:51:31 +0200 |
|---|---|---|
| committer | Stefan Kreutz <mail@skreutz.com> | 2026-08-22 16:51:31 +0200 |
| commit | a284e400639e0023baa7acb97e42a0d08cfe4a76 (patch) | |
| tree | ef2821389fa8dc061b1f5616b7cd31045e3f8924 /justfile | |
| parent | c42f73e535f725fafd74567e73a8f2c69fe59dec (diff) | |
| download | temp-postgres-a284e400639e0023baa7acb97e42a0d08cfe4a76.tar.gz | |
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 20 |
1 files changed, 0 insertions, 20 deletions
@@ -1,7 +1,5 @@ alias fmt := format -head := `git rev-parse HEAD` - _default: @just --list @@ -35,21 +33,3 @@ check: @# Check Nix flake nix flake check --print-build-logs --verbose cd examples/nixos/ && nix flake check --print-build-logs --verbose --override-input temp-postgres ../.. - -# Update Nix flake inputs, and Rust dependencies. -update: - @# Update Nix flake inputs. - git diff --stat --exit-code - nix flake update - nix develop --command just check - git diff --stat --exit-code -- . ':(exclude)flake.lock' - git diff --no-patch --exit-code flake.lock || git commit --message 'Update Nix flake inputs' flake.lock - @# Update Rust dependencies. - git diff --stat --exit-code - nix develop --command cargo upgrade - nix develop --command cargo update - nix develop --command just check - git diff --stat --exit-code -- . ':(exclude)Cargo.toml' ':(exclude)Cargo.lock' - git diff --no-patch --exit-code Cargo.lock || git commit --message 'Update Rust dependencies' Cargo.toml Cargo.lock - @# Show commits. - git --no-pager log --stat {{ head }}.. |