diff --git a/lib/chef-dk/command/shell_init.rb b/lib/chef-dk/command/shell_init.rb index 23a24a1c0..d13475f26 100644 --- a/lib/chef-dk/command/shell_init.rb +++ b/lib/chef-dk/command/shell_init.rb @@ -174,6 +174,11 @@ def fish_shell_export(var, val) def powershell_export(var, val) emit_shell_cmd(%Q{$env:#{var}="#{val}"}) end + + def check_license_acceptance + # It gives a very weird error if users try to eval the shell-init command and it requests the + # license from them. Instead, let users shell-init without accepting the license. + end end end end