summaryrefslogtreecommitdiff
path: root/include/bootstrap
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-06-14 09:35:20 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2009-06-14 09:35:20 +0200
commit90dab0f3c6e728be355ad133d76e2741b69dd193 (patch)
tree2e2dbfe034260e99778dade56709b5acfb742613 /include/bootstrap
parent73d96356d98a4f4fcbd977c2139ce7d5c75a3d4c (diff)
bootstrap: Mention that $PATH should include ~/bin when running pkg
Diffstat (limited to 'include/bootstrap')
-rwxr-xr-xinclude/bootstrap7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/bootstrap b/include/bootstrap
index 77bbf79..fb683e0 100755
--- a/include/bootstrap
+++ b/include/bootstrap
@@ -69,3 +69,10 @@ if (( rcempty )) {
echo 'Removing empty zshrc'
rm ~/.zshrc
}
+
+if [[ $PATH != *$HOME/bin* ]] {
+ cat <<- tac
+ Note: You may need to change your PATH to include ~/bin,
+ otherwise certain parts of pkg will not work.
+ tac
+}