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 shift arg when present

+5 -2
+5 -2
ci.bash
··· 5 5 # 6 6 set -euo pipefail 7 7 8 - system="${1:-"x86_64-linux"}" 9 - shift 8 + system="x86_64-linux" 9 + if test -n "${1:-}"; then 10 + system="${1}" 11 + shift 12 + fi 10 13 11 14 suite="" 12 15 preSuite=""