1
0
Fork 0
openwrt/build.sh

11 lines
176 B
Bash
Executable File

#!/bin/sh
set -e
while IFS= read -r TARGET; do
if [ ! -z "$TARGET" ] && [ "${TARGET%${TARGET#?}}" != '#' ]; then
export TARGET
./build-target.sh
fi
done < targets.list