summaryrefslogtreecommitdiff
path: root/init-dotnet.sh
blob: b446260af56b9cd723a5a5cf4715ef38db7bbb4c (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