Merge pull request #6200 from jyoungyun/arm/cross-build

Add --rid option to support cross build
This commit is contained in:
Livar 2017-04-05 12:40:29 -07:00 committed by GitHub
commit 7080b71401

View file

@ -90,6 +90,12 @@ while [[ $# > 0 ]]; do
args=( "${args[@]/$2}" )
shift
;;
--runtime-id)
CUSTOM_BUILD_ARGS="/p:Rid=\"$2\""
args=( "${args[@]/$1}" )
args=( "${args[@]/$2}" )
shift
;;
# This is here just to eat away this parameter because CI still passes this in.
--targets)
args=( "${args[@]/$1}" )