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:
Terry Nycum 2014-08-18 20:13:26 -07:00 committed by Mike McQuaid
parent e0c833ca17
commit 26016fb3ec

View file

@ -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