Skip to content

Commit

Permalink
Fix issue with sshkit escaping $HOME (#88)
Browse files Browse the repository at this point in the history
* Use tilde instead of dollar home

* Bump version and add not to CHANGELOG.md

* Revert version number change

Co-authored-by: Matt Brictson <[email protected]>
  • Loading branch information
KNejad and mattbrictson committed Jan 15, 2020
1 parent b8807f3 commit fea2cf7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# [master][]

* Your contribution here!
* [#88](https://github.com/capistrano/rbenv/pull/88): Fix issue with sshkit escaping `$HOME`

# [2.1.4][] (8 Sep 2018)

Expand Down
2 changes: 1 addition & 1 deletion lib/capistrano/tasks/rbenv.rake
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ namespace :load do
rbenv_path ||= if fetch(:rbenv_type, :user) == :system
'/usr/local/rbenv'
else
'$HOME/.rbenv'
'~/.rbenv'
end
}

Expand Down

0 comments on commit fea2cf7

Please sign in to comment.