antos/docker/antos/profile
DanyLE 43347010a8
Some checks reported errors
gitea-sync/antos/pipeline/head This commit looks good
gitea-sync/antos/pipeline/tag Something is wrong with the build of this commit
feat: add docker build support
2024-03-10 23:10:05 +01:00

23 lines
590 B
Bash

# unset variable if exists
unset ANTOS_USER
unset ANTOS_PASSWORD
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
export PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
export PATH="$HOME/.local/bin:$PATH"
fi
# set user private LIB search path
if [ -d "$HOME/lib" ] ; then
export LD_LIBRARY_PATH="$HOME/lib:$LD_LIBRARY_PATH"
fi
# set user private LIB search path
if [ -d "$HOME/.local/lib" ] ; then
export LD_LIBRARY_PATH="$HOME/.local/lib:$LD_LIBRARY_PATH"
fi