From 1ddafee6145e53ba038fbb465f1f0ef921553dd3 Mon Sep 17 00:00:00 2001 From: "L. E. Segovia" <13498015+amyspark@users.noreply.github.com> Date: Thu, 3 Oct 2019 20:16:01 +0000 Subject: [PATCH] Cask: address @reitermarkus's comments --- Library/Homebrew/cask/artifact/abstract_uninstall.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/cask/artifact/abstract_uninstall.rb b/Library/Homebrew/cask/artifact/abstract_uninstall.rb index de5044667a..19d8476b7e 100644 --- a/Library/Homebrew/cask/artifact/abstract_uninstall.rb +++ b/Library/Homebrew/cask/artifact/abstract_uninstall.rb @@ -364,8 +364,8 @@ module Cask trashable, untrashable = paths.partition(&:writable?) unless untrashable.empty? - opoo "These files cannot be moved to the user's Trash: " - puts untrashable + opoo "These files cannot be moved to the user's Trash:" + $stderr.puts untrashable end result = command.run!("/usr/bin/swift", args: [TRASH_SCRIPT, *trashable])