mirror of
https://github.com/koalaman/shellcheck.git
synced 2024-11-22 21:40:19 -08:00
b9b6975bfa
Features Linux x86_64 docker builds for all archs
13 lines
204 B
Bash
Executable File
13 lines
204 B
Bash
Executable File
#!/bin/sh
|
|
if [ $# -eq 0 ]
|
|
then
|
|
echo >&2 "No build image directories specified"
|
|
echo >&2 "Example: $0 build/*/"
|
|
exit 1
|
|
fi
|
|
|
|
for dir
|
|
do
|
|
( cd "$dir" && docker build -t "$(cat tag)" . ) || exit 1
|
|
done
|