We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03aba96 commit 015ba11Copy full SHA for 015ba11
esmvaltool/utils/recipe_test_workflow/recipe_test_workflow/app/configure/bin/configure.py
@@ -16,6 +16,9 @@
16
import esmvalcore.experimental as esmvaltool
17
import yaml
18
19
+ESMVALTOOL_DIR = os.environ["ESMVALTOOL_DIR"]
20
+LATEST_USER_CONFIG_FILE = os.path.join(ESMVALTOOL_DIR,
21
+ "config-user-example.yml")
22
USER_CONFIG_PATH = os.environ["USER_CONFIG_PATH"]
23
24
@@ -52,7 +55,7 @@ def get_config_values_from_task_env():
52
55
# additional datasets, so may need to be configured in the future.
53
56
config_values_from_task_env = {
54
57
"auxiliary_data_dir": "",
- "config_file": USER_CONFIG_PATH,
58
+ "config_file": LATEST_USER_CONFIG_FILE,
59
"download_dir": "",
60
"drs": {
61
"ana4mips": os.environ["DRS_ANA4MIPS"],
0 commit comments