Skip to content
Merged
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
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
bashInteractive
cargo-deny
cargo-llvm-cov
cargo-machete
Expand Down
5 changes: 5 additions & 0 deletions scripts/dkg-runner/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ if ! command -v jq >/dev/null 2>&1; then
exit 1
fi

if ! type -t compgen >/dev/null 2>&1; then
log_err "compgen builtin is required (bash must be built with programmable completion)"
exit 1
fi

if is_truthy "${RUN_SMOKE_VERIFY}" && ! command -v curl >/dev/null 2>&1; then
log_err "curl is required for runtime smoke verification"
exit 1
Expand Down
Loading