mirror of
https://github.com/status-im/status-react.git
synced 2025-02-22 15:48:50 +00:00
nix: fix installing Nix
we didn't source profile after running nix/scripts/setup.sh Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
d35deefcb5
commit
3116b04a34
@ -4,18 +4,25 @@
|
||||
|
||||
GIT_ROOT=$(cd "${BASH_SOURCE%/*}" && git rev-parse --show-toplevel)
|
||||
|
||||
# Location of profile script for Nix that adjusts PATH
|
||||
NIX_PROFILE_SH="${HOME}/.nix-profile/etc/profile.d/nix.sh"
|
||||
|
||||
function source_nix() {
|
||||
# Just stop if Nix is already available
|
||||
if [[ -x $(command -v nix) ]]; then
|
||||
return
|
||||
elif [[ -f "${HOME}/.nix-profile/etc/profile.d/nix.sh" ]]; then
|
||||
elif [[ -f "${NIX_PROFILE_SH}" ]]; then
|
||||
# Load Nix profile if it exists
|
||||
source "${HOME}/.nix-profile/etc/profile.d/nix.sh"
|
||||
source "${NIX_PROFILE_SH}"
|
||||
return
|
||||
else
|
||||
# Setup Nix if not available
|
||||
${GIT_ROOT}/nix/scripts/setup.sh
|
||||
fi
|
||||
|
||||
# Load Nix profile
|
||||
source "${NIX_PROFILE_SH}"
|
||||
|
||||
# Verify Nix is available
|
||||
if [[ ! -x $(command -v nix) ]]; then
|
||||
echo "Nix not available, sourcing profile failed!" > /dev/stderr
|
||||
|
Loading…
x
Reference in New Issue
Block a user