Skip to content

Commit

Permalink
Fixes after merging Codaisseur#8 by @jamilbk which broke the bin paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wouter de Vos committed Oct 22, 2014
1 parent aaaad02 commit 7c141d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Ruby/lib/terminal_notifier/guard/notify.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Notify
terminal_notifier_path = `which terminal-notifier`.strip

BIN_PATH = terminal_notifier_path.empty? ?
File.expand_path('../../../../vendor/terminal-notifier-failed.app/Contents/MacOS/terminal-notifier', __FILE__)
File.expand_path('../../../../vendor/terminal-notifier-notify.app/Contents/MacOS/terminal-notifier', __FILE__)
:
terminal_notifier_path
end
Expand Down
2 changes: 1 addition & 1 deletion Ruby/lib/terminal_notifier/guard/pending.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Pending
terminal_notifier_path = `which terminal-notifier`.strip

BIN_PATH = terminal_notifier_path.empty? ?
File.expand_path('../../../../vendor/terminal-notifier-failed.app/Contents/MacOS/terminal-notifier', __FILE__)
File.expand_path('../../../../vendor/terminal-notifier-pending.app/Contents/MacOS/terminal-notifier', __FILE__)
:
terminal_notifier_path
end
Expand Down
2 changes: 1 addition & 1 deletion Ruby/lib/terminal_notifier/guard/success.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Success
terminal_notifier_path = `which terminal-notifier`.strip

BIN_PATH = terminal_notifier_path.empty? ?
File.expand_path('../../../../vendor/terminal-notifier-failed.app/Contents/MacOS/terminal-notifier', __FILE__)
File.expand_path('../../../../vendor/terminal-notifier-success.app/Contents/MacOS/terminal-notifier', __FILE__)
:
terminal_notifier_path
end
Expand Down

0 comments on commit 7c141d1

Please sign in to comment.