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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cross
diff options
context:
space:
mode:
authorHyeongseok Oh <hseok82.oh@samsung.com>2017-03-18 02:34:28 +0300
committerGitHub <noreply@github.com>2017-03-18 02:34:28 +0300
commitfef7c5b65b737f3c901b1c4a174b0a758778190b (patch)
treed2e9e4f92f619993d7071aa3d42b27c2ab90dac0 /cross
parent562816dc92f885659d7b0fc258571b6ec529a03a (diff)
Update x86_ci_script.sh
Removed unused variable
Diffstat (limited to 'cross')
-rwxr-xr-xcross/x86_ci_script.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/cross/x86_ci_script.sh b/cross/x86_ci_script.sh
index 3e3edf40ae..59e07ec5d5 100755
--- a/cross/x86_ci_script.sh
+++ b/cross/x86_ci_script.sh
@@ -13,10 +13,9 @@ function exit_with_error {
function exit_if_empty {
local inputString="$1"
local errorMessage="$2"
- local printUsage=$3
if [ -z "$inputString" ]; then
- exit_with_error "$errorMessage" $printUsage
+ exit_with_error "$errorMessage"
fi
}
@@ -56,7 +55,7 @@ done
set -x
set -e
-exit_if_empty "$__buildConfig" "--buildConfig is a mandatory argument, not provided" true
+exit_if_empty "$__buildConfig" "--buildConfig is a mandatory argument, not provided"
#Complete the cross build
(set +x; echo 'Building corefx...')