We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77404a4 + d437832 commit 2a1d94eCopy full SHA for 2a1d94e
metadata.rb
@@ -4,7 +4,7 @@
4
license 'Apache 2.0'
5
description 'Configures tools for development on Windows'
6
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
7
-version '0.1.85'
+version '0.1.86'
8
depends 'git'
9
depends 'windows'
10
recipes/console.rb
@@ -58,7 +58,12 @@
58
# install posh-git
59
powershell_script 'posh-git' do
60
code <<-EOH
61
-Install-Module posh-git
+# Bootstrap provider
62
+Get-PackageProvider -Name NuGet -ForceBootstrap
63
+
64
+# Install post-git
65
+Install-Module posh-git -confirm:$false -force
66
67
# Remove the un-needed example posh-git profile include
68
if ( test-path $PROFILE )
69
{
0 commit comments