Modular, context-aware and aspect-oriented dendritic Nix configurations. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ den.oeiuwq.com
configurations den dendritic nix aspect oriented
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: ci.bash only show success if pass == total (#471)

authored by

Victor Borja and committed by
GitHub
cc422d0a 483f5ec6

+1 -1
+1 -1
ci.bash
··· 60 60 fail=$(jq -r 'select(.name != null and (.name | startswith("PASS-") | not)) | "."' "$results" | wc -l) 61 61 62 62 63 - if [ "$fail" -eq 0 ]; then 63 + if [ "$pass" -eq "$total" ]; then 64 64 echo "🎉 ${pass}/${total} successful" 65 65 rm "$results" || true 66 66 else