From fb18480ee3e9c205ecc520604421c629dc678a27 Mon Sep 17 00:00:00 2001 From: Alex Piechowski Date: Thu, 30 Sep 2021 00:41:21 -0500 Subject: [PATCH] Fix grammar in dependencies/unox.rb then -> than (#782) --- lib/docker-sync/dependencies/unox.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/docker-sync/dependencies/unox.rb b/lib/docker-sync/dependencies/unox.rb index 8f1acf2..6c15f59 100644 --- a/lib/docker-sync/dependencies/unox.rb +++ b/lib/docker-sync/dependencies/unox.rb @@ -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') @@ -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')