Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnirudh Agnihotry <anirudhagnihotry098@gmail.com>2020-02-25 23:26:04 +0300
committerGitHub <noreply@github.com>2020-02-25 23:26:04 +0300
commita03e6f7433b9589bc60c1ff9b1a93e19c59c7f1a (patch)
tree578561aa29abc6c00fe969bc4180bf707879dea1 /eng/build.sh
parent1e379eed53e4be43ddbedccf8087b3821e3937e3 (diff)
Removing configuration group from installer (#32770)
* removing config group from installer * Revert "Add ConfigurationGroup back to entrypoints (#32762)" This reverts commit 059d0385ff7f6a7b12557e533fccddd5b484a3ce. * fixing the build failure and removing the default value
Diffstat (limited to 'eng/build.sh')
-rwxr-xr-xeng/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/eng/build.sh b/eng/build.sh
index 22577c6332b..cf8eb87a466 100755
--- a/eng/build.sh
+++ b/eng/build.sh
@@ -94,7 +94,7 @@ while [[ $# > 0 ]]; do
;;
-configuration|-c)
val="$(tr '[:lower:]' '[:upper:]' <<< ${2:0:1})${2:1}"
- arguments="$arguments /p:ConfigurationGroup=$val -configuration $val"
+ arguments="$arguments -configuration $val"
shift 2
;;
-framework|-f)