Skip to content
Snippets Groups Projects
Commit 9797d841 authored by Sven Mäder's avatar Sven Mäder :speech_balloon:
Browse files

Add python and rust(cargo) env to PATH

parent ab3a405f
No related branches found
No related tags found
No related merge requests found
......@@ -97,9 +97,15 @@ export BAT_THEME='DarkNeon'
# --- ansible ---
if [[ "${ENVRCD_USER}" == "rda" ]] && [[ "${USER}" == "maedersv" || "${USER}" == "rda" ]]; then
#export ANSIBLE_CONFIG="~/.ansible.cfg"
if [ -d "$HOME/.local/bin" ]; then
if [ -d "${HOME}/.cargo/env" ]; then
export PATH="${HOME}/.cargo/env:${PATH}"
fi
if [ -d "${HOME}/.local/bin" ]; then
export PATH="${HOME}/.local/bin:${PATH}"
fi
if [ -d "${HOME}/env/pyenv/bin" ]; then
export PATH="${HOME}/env/pyenv/bin:${PATH}"
fi
export ANSIBLE_STRATEGY_PLUGINS="~/.ansible/mitogen/ansible_mitogen/plugins/strategy"
export ANSIBLE_STRATEGY="mitogen_linear"
export ANSIBLE_ISG_PHYS_PATH="~/git/ansible-isg-phys"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment