summaryrefslogtreecommitdiff
path: root/osx
diff options
context:
space:
mode:
Diffstat (limited to 'osx')
-rw-r--r--osx/Welcome4
-rwxr-xr-xosx/uninstall-pandoc3
2 files changed, 4 insertions, 3 deletions
diff --git a/osx/Welcome b/osx/Welcome
index 3acc7efd7..5b075ac50 100644
--- a/osx/Welcome
+++ b/osx/Welcome
@@ -4,8 +4,8 @@ to use `pandoc` and the associated wrapper scripts, you must have
default path, add these lines to the end of `.profile` in your home
directory and open a new terminal window:
- export PATH=/usr/local/bin:$PATH
- export MANPATH=/usr/local/man:$MANPATH
+ export PATH=$PATH:/usr/local/bin
+ export MANPATH=$MANPATH:/usr/local/share/man
To uninstall Pandoc at any time, use the following command:
diff --git a/osx/uninstall-pandoc b/osx/uninstall-pandoc
index 0e759ed0d..65f6ba76c 100755
--- a/osx/uninstall-pandoc
+++ b/osx/uninstall-pandoc
@@ -3,7 +3,8 @@
# everything installed by the Pandoc Mac OS X installer.
if [ "`id -u`" != 0 ]; then \
- echo "This script must be run with sudo."; \
+ echo "This script must be run with root privileges:"; \
+ echo "sudo /usr/local/bin/uninstall-pandoc"; \
exit 1; \
fi