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

sync.sh - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f3319697761bc5e76981f6c1c767883a3e745bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env bash

if [ $# == 0 ]; then
    __args=-p
fi

working_tree_root="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

$working_tree_root/init-tools.sh
if [ $? -ne 0 ]; then
    exit 1
fi

# Building CoreFx.Tools before calling build-managed.sh to workaround an Assembly loading bug caused by the new cli host.
"$working_tree_root/Tools/msbuild.sh" "$working_tree_root/src/Tools/CoreFx.Tools/CoreFx.Tools.csproj /v:m /m"
if [ $? -ne 0 ];then
   exit 1
fi

$working_tree_root/run.sh sync $__args $*
exit $?