blob: 1b988810f85c0d2739c13ea1f717b6cf8fcb4f2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
module LicenseFinder
class Dotnet
def prepare
shell.execute(['apt-get', :update, '-q'])
shell.execute(['apt-get', :install, '-y', '--no-install-recommends', 'dotnet-sdk-3.1'])
shell.execute([:dotnet, :restore])
end
end
end
|