mirror of https://github.com/n1nj4sec/pupy.git
Option to pass toolchain / sources manually
This commit is contained in:
parent
94d2489ed2
commit
233c2eb4cf
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue