mirror of
https://github.com/zigzap/zap.git
synced 2025-10-20 23:24:09 +00:00
6 lines
142 B
Bash
Executable file
6 lines
142 B
Bash
Executable file
#!/usr/bin/env bash
|
|
for i in $(cat targets.txt) ; do
|
|
echo "-------------------------------------------"
|
|
echo $i
|
|
zig build $i
|
|
done
|