Skip to content
Snippets Groups Projects
Verified Commit c833e6e6 authored by David Hoese's avatar David Hoese
Browse files

Fix environment sourcing on rocky

parent a0a6248d
No related branches found
No related tags found
No related merge requests found
...@@ -9,8 +9,8 @@ if [[ "${os_kind}" == "ubuntu" ]]; then ...@@ -9,8 +9,8 @@ if [[ "${os_kind}" == "ubuntu" ]]; then
source /var/lib/gitlab-runner/.bashrc source /var/lib/gitlab-runner/.bashrc
elif [[ "${os_kind}" == "pop" ]]; then elif [[ "${os_kind}" == "pop" ]]; then
source /var/lib/gitlab-runner/.bashrc source /var/lib/gitlab-runner/.bashrc
elif [[ "${os_kind}" == "centos" ]]; then else
source ~/.bashrc source ${HOME}/.bashrc
fi fi
if [[ -z "$METOBS_SITE_DEST" ]]; then if [[ -z "$METOBS_SITE_DEST" ]]; then
......
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