This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
kittehcluster/buildall.sh
2024-07-13 16:56:20 -04:00

12 lines
No EOL
295 B
Bash
Executable file

#!/usr/bin/env bash
for FILE in kitteh-node-*/*; do
FILE_NO_EXTENSION="${FILE/".nix"/""}"
if [ ! -f "out/$FILE_NO_EXTENSION.vma.zst" ] || git diff --exit-code $FILE; then
./build.sh $FILE_NO_EXTENSION
else
echo "Not building '$FILE_NO_EXTENSION'."
fi
done
echo "Done building."