Skip to content

Commit

Permalink
Put SSH on the path so kitchen login works
Browse files Browse the repository at this point in the history
Fix #134
  • Loading branch information
Orion Ifland committed May 17, 2016
1 parent 70c9e20 commit b24e6e0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,9 @@
# Revision History for chefdk_bootstrap

## Unreleased
* Fix [#132](https://github.com/Nordstrom/chefdk_bootstrap/issues/133):
* Fix [#134](https://github.com/Nordstrom/chefdk_bootstrap/issues/132):
Put SSH on the path so `kitchen login` works
* Fix [#132](https://github.com/Nordstrom/chefdk_bootstrap/issues/132):
Add comments to CurrentUserAllHosts
* Fix [#63](https://github.com/Nordstrom/chefdk_bootstrap/issues/63):
Dry up the cleanup in the Windows bootstrap
Expand Down
1 change: 1 addition & 0 deletions recipes/git.rb
Expand Up @@ -19,6 +19,7 @@
chocolatey_package 'git'
chocolatey_package 'git-credential-manager-for-windows'
chocolatey_package 'poshgit'
windows_path 'C:\Program Files\Git\usr\bin'
when 'mac_os_x'
package 'git'
end
5 changes: 5 additions & 0 deletions test/integration/default/git_spec.rb
Expand Up @@ -37,3 +37,8 @@
describe powershell('test-path Function:\PoshGitPrompt') do
its(:stdout) { should match(/^True\R/) }
end

# Make sure ssh is on the path
describe command('ssh') do
it { should exist }
end

0 comments on commit b24e6e0

Please sign in to comment.