23 lines
738 B
Bash
Executable File
23 lines
738 B
Bash
Executable File
source /etc/bash.bashrc
|
|
|
|
# Set location for AppHost lookup
|
|
[ -z "$DOTNET_ROOT" ] && export DOTNET_ROOT=/usr/lib64/dotnet
|
|
|
|
# Add dotnet tools directory to PATH
|
|
DOTNET_TOOLS_PATH="$HOME/.dotnet/tools"
|
|
case "$PATH" in
|
|
*"$DOTNET_TOOLS_PATH"* ) true ;;
|
|
* ) PATH="$PATH:$DOTNET_TOOLS_PATH" ;;
|
|
esac
|
|
|
|
# Extract self-contained executables under HOME
|
|
# to avoid multi-user issues from using the default '/var/tmp'.
|
|
[ -z "$DOTNET_BUNDLE_EXTRACT_BASE_DIR" ] && export DOTNET_BUNDLE_EXTRACT_BASE_DIR="${XDG_CACHE_HOME:-"$HOME"/.cache}/dotnet_bundle_extract"
|
|
|
|
|
|
echo ReFuel Project - Copyright \(C\) 2023
|
|
echo
|
|
echo This is an interactive shell for ReFuel build image.
|
|
echo SuperUser \(su/sudo\) commands are enabled without a password. Beware.
|
|
|