bent.mozilla%gmail.com b3cc76e7aa Bug 37357 - "MozillaBuild should allow a user-specified HOME directory". r=bsmedberg.
git-svn-id: svn://10.0.0.236/trunk@222123 18797224-902f-48f8-a5cc-f745e15eee43
2007-03-20 22:46:39 +00:00

11 lines
196 B
Bash
Executable File

#!/bin/sh
if test -n "$USERPROFILE" -a "$HOME" = "/home/$LOGNAME"; then
HOME=$(cd "$USERPROFILE" && pwd)
fi
export HOME
if test -f "$HOME/.bash_profile"; then
. "$HOME/.bash_profile"
fi