Skip to content

Commit

Permalink
unpack_strategy/dmg: more UID handling fixes
Browse files Browse the repository at this point in the history
Follow-up to #18040.
  • Loading branch information
carlocab committed Sep 27, 2024
1 parent da3b84b commit 86b27eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/Homebrew/unpack_strategy/dmg.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def self.bom(pathname)
result = loop do
# We need to use `find` here instead of Ruby in order to properly handle
# file names containing special characters, such as “e” + “´” vs. “é”.
r = system_command("find", args: [".", "-print0"], chdir: pathname, print_stderr: false)
r = system_command("find", args: [".", "-print0"], chdir: pathname, print_stderr: false, reset_uid: true)
tries += 1

# Spurious bug on CI, which in most cases can be worked around by retrying.
Expand Down

0 comments on commit 86b27eb

Please # to comment.