1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2026-05-08 14:09:30 +00:00

/etc/paths.d and /etc/manpaths.d are Mac only.

This commit is contained in:
Sorin Ionescu
2012-01-26 21:14:51 -05:00
parent 6a8962d785
commit 7ca3ff941b
+2 -2
View File
@@ -36,7 +36,7 @@ manpath=(
/usr/share/man
)
for path_file in /etc/manpaths.d/*; do
for path_file in /etc/manpaths.d/*(.N); do
manpath+=($(<$path_file))
done
@@ -51,7 +51,7 @@ path=(
/sbin
)
for path_file in /etc/paths.d/*; do
for path_file in /etc/paths.d/*(.N); do
path+=($(<$path_file))
done