repo.or.cz
/
marnav.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Build: add test presets
[marnav.git]
/
bin
/
docker-prepare-all.sh
blob
0e33998847ae6ae78054593adb19bd219d090e2b
1
#!/bin/bash -e
2
3
export
SCRIPT_BASE
=
$
(
dirname
`readlink -f
$0
`
)
4
5
${SCRIPT_BASE}
/
docker-prepare-image.sh \
6
|
grep
-E
"^\s+-"
\
7
|
sed
-e
's/^\s\+-\s//'
\
8
|
while
read
ln
;
do
${SCRIPT_BASE}
/
docker-prepare-image.sh
$ln
;
done
9