dotnet-installer/scripts/build/process-args.sh

35 lines
813 B
Bash
Raw Normal View History

#!/usr/bin/env bash
#
# Copyright (c) .NET Foundation and contributors. All rights reserved.
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
#
params=("$@")
for i in "${!params[@]}"
do
lowerI="$(echo ${params[$i]} | awk '{print tolower($0)}')"
case $lowerI in
"release" | "-release")
export CONFIGURATION=Release
;;
"debug" | "-debug")
export CONFIGURATION=Debug
;;
"offline" | "-offline")
export OFFLINE=true
;;
"nopackage" | "-nopackage")
export NOPACKAGE=true
;;
"nocache" | "-nocache")
2016-01-04 23:50:28 -08:00
export NOCACHE=--No-Cache
;;
"--buildindocker")
export BUILD_IN_DOCKER=true
export DOCKER_OS=${params[i+1]}
;;
*)
esac
done