Skip to content

Commit

Permalink
Always prefer local lib over other versions (tmuxinator#603)
Browse files Browse the repository at this point in the history
`>>` appends to LOAD_PATH, which means another installation might take
precedence. This bug was introduced in 2903c70.
  • Loading branch information
tribut authored and ethagnawl committed Apr 3, 2018
1 parent a25c61d commit c117914
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Unreleased
- Fix load order when multiple versions of tmuxinator are installed (#603)

## 0.11.0
### Misc
- Make Config#xdg comment reference correct XDG variable and include example of
Expand Down
2 changes: 1 addition & 1 deletion bin/tmuxinator
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env ruby
$: << File.expand_path("../../lib/", __FILE__)
$:.unshift File.expand_path("../../lib/", __FILE__)

require "thor"
require "tmuxinator"
Expand Down

0 comments on commit c117914

Please sign in to comment.