Option to pass toolchain / sources manually

This commit is contained in:
Oleksii Shevchuk 2018-01-13 11:10:21 +02:00
parent 94d2489ed2
commit 233c2eb4cf
1 changed files with 8 additions and 4 deletions

View File

@ -44,7 +44,11 @@ start_container() {
) )
} }
start_container windows sources if [ ! -z "$1" ] && [ ! -z "$2" ]; then
start_container linux32 sources-linux start_container $1 $2
start_container linux64 sources-linux else
start_container android android_sources start_container windows sources
start_container linux32 sources-linux
start_container linux64 sources-linux
start_container android android_sources
fi