mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-15 07:21:33 +01:00
12 lines
316 B
Bash
12 lines
316 B
Bash
|
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
curl https://raw.githubusercontent.com/dockcross/dockcross/master/Makefile -o dockcross-Makefile
|
||
|
make -f dockcross-Makefile display_images
|
||
|
|
||
|
source $(dirname "$0")/functions/makefile_fn.sh
|
||
|
|
||
|
for image in $(make -f dockcross-Makefile display_images); do
|
||
|
makefile_build $image $@
|
||
|
done
|