#!/bin/bash

# .bash_profile
# (loaded for interactive shells)
#
# see alse bashrc file
#
# DO NOT MODIFY THIS FILE DIRECTLY
# USE ~/.metwork.custom_interactive_profile
# TO OVERRIDE

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
    . ~/.bashrc
fi

# We load the "interactive profile"
# shellcheck disable=SC1091
. "/opt/metwork-mfext-2.1/share/interactive_profile"

# We override with custom module wide settings (if existing)
if test -f ~/.metwork.custom_interactive_profile; then
    . ~/.metwork.custom_interactive_profile
fi
