Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/pre-commit.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -eoux pipefail
Comment on lines +1 to 2
Copy link

Copilot AI Apr 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

set -eoux pipefail is likely not enabling pipefail as intended because -o requires an argument; when combined with subsequent flags (u/x) it can be parsed incorrectly, leaving pipefail as a positional parameter instead of an option. Consider switching to set -euxo pipefail (or set -euo pipefail plus a separate set -x) to ensure pipefail is actually set.

Copilot uses AI. Check for mistakes.

just fmt --check
42 changes: 21 additions & 21 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
clang
glibc_multi
ninja
nix-tools.packages.${pkgs.system}.kani
nix-tools.packages.${pkgs.stdenv.hostPlatform.system}.kani
dtc

stlink
];
Expand Down
Loading