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

__scriptpath=$(cd "$(dirname "$0")"; pwd -P)

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