rust-nex/check-all.sh

7 lines
170 B
Bash
Raw Normal View History

#!/usr/bin/env bash
SETTINGS=$(yq ea "." editions.yaml | yq 'keys[]')
IFS=$'\n'
while IFS=$'\n' read -r EDITION; do
./check-edition.sh $EDITION
done <<< "$SETTINGS"