gecko-dev/tools/build-environment/win32/profile-homedir.sh

11 строки
166 B
Bash
Executable File

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