2024-08-05 15:14:09 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd $(dirname $(realpath $0))
|
|
|
|
|
2024-08-06 16:07:02 +03:00
|
|
|
while IFS= read -r port; do
|
2024-08-05 15:14:09 +03:00
|
|
|
pushd $(dirname "$port") >/dev/null
|
|
|
|
./build.sh
|
|
|
|
popd >/dev/null
|
2024-08-07 16:07:59 +03:00
|
|
|
done < <(find . -name '.compile_hash')
|