mirror of
https://github.com/koalaman/shellcheck
synced 2025-08-14 10:37:26 -07:00
Brand New Build!
Features Linux x86_64 docker builds for all archs
This commit is contained in:
parent
15ff87cf80
commit
b9b6975bfa
25 changed files with 461 additions and 254 deletions
12
build/build_builder
Executable file
12
build/build_builder
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/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
|
Loading…
Add table
Add a link
Reference in a new issue