Skip to content
Snippets Groups Projects
Commit 8cf11293 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[ci] Fix use of OS_SLUG

parent b4760d92
Branches
Tags
No related merge requests found
Pipeline #25771 passed
......@@ -187,11 +187,6 @@ set_conda_channels() {
}
if [ -z "${OS_SLUG}" ]; then
OS_SLUG="${OSNAME}-64"
fi
export_env OS_SLUG
log_env PYTHON_VERSION
check_env CI_PROJECT_DIR
check_env CI_PROJECT_NAME
......@@ -202,6 +197,11 @@ export_env BOB_PACKAGE_VERSION
OSNAME=`osname`
check_env OSNAME
if [ -z "${OS_SLUG}" ]; then
OS_SLUG="${OSNAME}-64"
fi
export_env OS_SLUG
DOCSERVER=http://www.idiap.ch
# Sets up the location of our rc file for conda
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment