summaryrefslogtreecommitdiff
path: root/init-dotnet.sh
blob: 36b74232f21168bb81a41058df1b6ab56a80c243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash

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

echo "Installing dotnet using Arcade..."

source ${__scriptpath}/eng/configure-toolset.sh
source ${__scriptpath}/eng/common/tools.sh

InitializeBuildTool

if [ $? != 0 ]; then
    echo "Failed to install dotnet using Arcade"
    exit $?
fi