osxfuse: fix cp destination in caveats.
Add missing trailing slash to destination of `cp` command. Without it, the copy of osxfusefs.fs/Contents goes directly into /Library/Filesystems, without the osxfuse.fs parent directory. Closes Homebrew/homebrew#31692. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
e0c833ca17
commit
26016fb3ec
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ class Osxfuse < Formula
|
|||
|
||||
The new osxfuse file system bundle needs to be installed by the root user:
|
||||
|
||||
sudo /bin/cp -RfX #{opt_prefix}/Library/Filesystems/osxfusefs.fs /Library/Filesystems
|
||||
sudo /bin/cp -RfX #{opt_prefix}/Library/Filesystems/osxfusefs.fs /Library/Filesystems/
|
||||
sudo chmod +s /Library/Filesystems/osxfusefs.fs/Support/load_osxfusefs
|
||||
EOS
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue