# # Cookbook:: kosmos-bitcoin # Recipe:: dotnet # build_essential remote_file "/opt/dotnet-install.sh" do source "https://dot.net/v1/dotnet-install.sh" mode "0755" end execute "install_dotnet_10" do command "/opt/dotnet-install.sh -c 10.0 --install-dir /usr/share/dotnet" not_if '/usr/share/dotnet/dotnet --version | grep -q "^10\."' end link "/usr/bin/dotnet" do to "/usr/share/dotnet/dotnet" end