Skip to content
Snippets Groups Projects
Commit b6f3399c authored by Markus Reiter's avatar Markus Reiter Committed by GitHub
Browse files

Merge pull request #1930 from vitorgalvao/set-permissions-sudo

cask: staged: no sudo in set_permissions
parents 664d0c67 c0b84a04
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ module Hbc
full_paths = remove_nonexistent(paths)
return if full_paths.empty?
@command.run!("/bin/chmod", args: ["-R", "--", permissions_str] + full_paths,
sudo: true)
sudo: false)
end
def set_ownership(paths, user: current_user, group: "staff")
......
......@@ -47,7 +47,7 @@ shared_examples_for Hbc::Staged do
staged.stubs(Pathname: fake_pathname)
Hbc::FakeSystemCommand.expects_command(
["/usr/bin/sudo", "-E", "--", "/bin/chmod", "-R", "--", "777", fake_pathname]
["/bin/chmod", "-R", "--", "777", fake_pathname]
)
staged.set_permissions(fake_pathname.to_s, "777")
end
......@@ -57,7 +57,7 @@ shared_examples_for Hbc::Staged do
staged.stubs(:Pathname).returns(fake_pathname)
Hbc::FakeSystemCommand.expects_command(
["/usr/bin/sudo", "-E", "--", "/bin/chmod", "-R", "--", "777", fake_pathname, fake_pathname]
["/bin/chmod", "-R", "--", "777", fake_pathname, fake_pathname]
)
staged.set_permissions([fake_pathname.to_s, fake_pathname.to_s], "777")
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment