EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit c64cc66a authored by Lubomir Dolezal's avatar Lubomir Dolezal
Browse files

test

parent 11f16f86
No related branches found
No related tags found
No related merge requests found
...@@ -29,11 +29,10 @@ file_env() { ...@@ -29,11 +29,10 @@ file_env() {
val="$(< "${!fileVar}")" val="$(< "${!fileVar}")"
fi fi
cat >> /etc/bash.bashrc <<EOF cat >> /etc/bash.bashrc <<EOF
export ${var}=${val}
EOF EOF
echo "the value of variable ${var} is set" >&2 echo "the value of variable ${var} is set" >&2
# make them also available in preparatory steps until container starts # make them also available in preparatory steps until container starts
export ${var}=${val} export "${var}"="${val}"
unset "$fileVar" unset "$fileVar"
} }
......
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