Skip to content

Commit

Permalink
Fix grammar in dependencies/unox.rb then -> than (#782)
Browse files Browse the repository at this point in the history
  • Loading branch information
grepsedawk committed Sep 30, 2021
1 parent ceca14a commit fb18480
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/docker-sync/dependencies/unox.rb
Expand Up @@ -14,7 +14,7 @@ class << self

def self.available?
# should never have been called anyway - fix the call that it should check for the OS
raise 'Unox cannot be available for other platforms then MacOS' unless Environment.mac?
raise 'Unox cannot be available for platforms other than MacOS' unless Environment.mac?

return true if brew_package_installed?('unox')
return false unless brew_package_installed?('unison-fsmonitor')
Expand All @@ -26,7 +26,7 @@ def self.available?

def self.ensure!
return if available?
raise 'Unox cannot be installed on other platforms then MacOS' unless Environment.mac?
raise 'Unox cannot be installed on platforms other than MacOS' unless Environment.mac?

cleanup_non_brew_version!
PackageManager.install_package('eugenmayer/dockersync/unox')
Expand Down

0 comments on commit fb18480

Please sign in to comment.