aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorTerry Nycum2014-08-18 20:13:26 -0700
committerMike McQuaid2014-08-19 10:58:26 +0100
commit5c4349861c2c50e97eaac4fb94ca0120f128f670 (patch)
tree40b4e56b88601b8a75a7d7dd01adca7907b6af50 /Library/Formula
parente604db5d85d9edee3b5b5b8ae78b0d633d1414fe (diff)
downloadhomebrew-5c4349861c2c50e97eaac4fb94ca0120f128f670.tar.bz2
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 #31692. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/osxfuse.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/osxfuse.rb b/Library/Formula/osxfuse.rb
index 8fcc532de..3e35ddd12 100644
--- a/Library/Formula/osxfuse.rb
+++ b/Library/Formula/osxfuse.rb
@@ -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