Merge pull request #4029 from commitay/set_ownership

Add message to `set_ownership`
This commit is contained in:
Vítor Galvão 2018-04-07 13:01:08 +01:00 committed by GitHub
commit 427e39b421
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,6 +33,7 @@ module Hbc
def set_ownership(paths, user: current_user, group: "staff")
full_paths = remove_nonexistent(paths)
return if full_paths.empty?
ohai "Changing ownership of paths required by #{@cask}; your password may be necessary"
@command.run!("/usr/sbin/chown", args: ["-R", "--", "#{user}:#{group}"] + full_paths,
sudo: true)
end