Trying git clone-erroring out

try1
execute 'clone-from-git' do
command 'git clone git@github.com:houami/drupal-site.git /var/www/html/drupal/'
end

try2
git "/var/www/html" do
repository "git@github.com:houami/drupal-site.git"
reference "master"
action :sync
end

Both are erroring out telling these
-----> Converging ...
Preparing files for transfer
Preparing dna.json
Resolving cookbook dependencies with Berkshelf 5.1.0...

------Exception-------
Class: Kitchen::ActionFailed
Message: 1 actions failed.
Failed to complete #converge action: [No such file or directory @ rb_sysopen - C:/Users/VIGNES~1/AppData/Loca
l/Temp/default-ubuntu-1604-sandbox-20161202-7536-1mg8esd/cookbooks/dploy2/drupal-8.2.3/core/modules/content_moderation/t
ests/modules/content_moderation_test_views/config/install/views.view.test_content_moderation_base_table_test.yml] on def
ault-ubuntu-1604

Please see .kitchen/logs/kitchen.log for more details
Also try running kitchen diagnose --all for configuration

Answered over on Stack Overflow but for posterity this isn’t an error from Chef. It’s probably either from Berks or the Berks integration code in Test Kitchen.

even after doing the berks install i get the same error