mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-07 06:17:14 +02:00
9 lines
238 B
Bash
Executable File
9 lines
238 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for p in 1 2 3
|
|
do
|
|
echo "============>>> ERROR: Pass $p <<<============"
|
|
make main 2>&1 | tee makelog-pass-$p-main.txt | grep ">>> ERROR:"
|
|
make testing 2>&1 | tee makelog-pass-$p-testing.txt | grep ">>> ERROR:"
|
|
done
|