Browse Source

.bash_profile: cleaner output

master
Alejandro Mery 16 years ago
parent
commit
428626d638
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      .bash_profile

+ 4
- 4
.bash_profile

@ -1,4 +1,4 @@
#!/bin/sh
echo ".bash_profile -> .bashrc" >&2
[ -s "$HOME/.bashrc" ] && source "$HOME/.bashrc"
if [ -s "$HOME/.bashrc" ]; then
echo ".bash_profile: -> .bashrc" >&2
. "$HOME/.bashrc"
fi

Loading…
Cancel
Save