aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/htop.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2011-04-04 16:56:47 -0700
committerAdam Vandenberg2011-04-04 16:56:47 -0700
commit1fb85efce5e47a832f187f9c8ee12bc42649fa3a (patch)
treebfaf9f7b0f5eb90f8d184179c0fa962621514240 /Library/Formula/htop.rb
parentf9f90beaa129c78ab31a24c49960dce2455d9eda (diff)
downloadhomebrew-1fb85efce5e47a832f187f9c8ee12bc42649fa3a.tar.bz2
Rewrite caveats to new style.
To make it easier to copy and paste multiline scripts from caveats, no longer use $ as a prompt marker.
Diffstat (limited to 'Library/Formula/htop.rb')
-rw-r--r--Library/Formula/htop.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/htop.rb b/Library/Formula/htop.rb
index 0fb60d1b7..5440231ff 100644
--- a/Library/Formula/htop.rb
+++ b/Library/Formula/htop.rb
@@ -13,12 +13,12 @@ class Htop < Formula
rm_rf "#{share}/pixmaps"
end
- def caveats; <<-EOS
-For htop to display correctly all running processes, it needs to run as root.
-If you don't want to `sudo htop` every time, change the owner and permissions:
- $ cd #{bin}
- $ chmod 6555 htop
- $ sudo chown root htop
+ def caveats; <<-EOS.undent
+ For htop to display correctly all running processes, it needs to run as root.
+ If you don't want to `sudo htop` every time, change the owner and permissions:
+ cd #{bin}
+ chmod 6555 htop
+ sudo chown root htop
EOS
end
end