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

[build] Fix call to set_environment

parent 24e12681
No related branches found
No related tags found
No related merge requests found
Pipeline #26019 failed
...@@ -254,9 +254,9 @@ if __name__ == '__main__': ...@@ -254,9 +254,9 @@ if __name__ == '__main__':
pyver = os.environ['PYTHON_VERSION'] pyver = os.environ['PYTHON_VERSION']
logger.info('os.environ["%s"] = %s', 'PYTHON_VERSION', pyver) logger.info('os.environ["%s"] = %s', 'PYTHON_VERSION', pyver)
set_environment('DOCSERVER', bootstrap._SERVER, os.environ) bootstrap.set_environment('DOCSERVER', bootstrap._SERVER, os.environ)
set_environment('LANG', 'en_US.UTF-8', os.environ) bootstrap.set_environment('LANG', 'en_US.UTF-8', os.environ)
set_environment('LC_ALL', os.environ['LANG'], os.environ) bootstrap.set_environment('LC_ALL', os.environ['LANG'], os.environ)
# create the build configuration # create the build configuration
conda_build_config = os.path.join(mydir, 'data', 'conda_build_config.yaml') conda_build_config = os.path.join(mydir, 'data', 'conda_build_config.yaml')
......
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