Do not overwrite conda-build root dir if already configured
2 unresolved threads
2 unresolved threads
The condarc file can contain the root-dir entry which state where conda-build should run and store its artifacts. Don't set croot if that setting is found.
Merge request reports
Activity
637 637 condarc_options = yaml.load(f) 638 638 639 639 # dump packages at conda_root 640 condarc_options['croot'] = os.path.join(args.conda_root, 'conda-bld') 640 prefix = get_env_directory(os.environ['CONDA_EXE'], 'base') 641 if 'conda-build' in condarc_options \ 642 and not 'root-dir' in condarc_options['conda-build']: 643 condarc_options['croot'] = os.path.join(prefix, 'conda-bld') added 1 commit
- 530ba0df - [build] Do not overwrite conda-build root dir if already configured
added 6 commits
-
530ba0df...b397a3d2 - 5 commits from branch
master
- 664dd2c8 - [build] Do not overwrite conda-build root dir if already configured
-
530ba0df...b397a3d2 - 5 commits from branch
637 637 condarc_options = yaml.load(f) 638 638 639 639 # dump packages at conda_root 640 condarc_options['croot'] = os.path.join(args.conda_root, 'conda-bld') 640 prefix = get_env_directory(os.environ['CONDA_EXE'], 'base') 641 if not 'conda-build' in condarc_options \ 642 or ('conda-build' in condarc_options \ changed this line in version 4 of the diff
added 1 commit
- f64a36c4 - [build] Do not overwrite conda-build root dir if already configured
mentioned in commit a75dbbcf
Please register or sign in to reply