@@ -1218,7 +1218,7 @@ def _postprocess_config(self):
12181218 # to avoid incorrect paths being used when EasyBuild changes the current working directory
12191219 # (see https://github.com/easybuilders/easybuild-framework/issues/3619);
12201220 # ensuring absolute paths for 'robot' is handled separately below,
1221- # because we need to be careful with the argument pass to --robot;
1221+ # because we need to be careful with the argument passed to --robot;
12221222 # note: repositorypath is purposely not listed here, because it's a special case:
12231223 # - the value could consist of a 2-tuple (<path>, <relative_subdir>);
12241224 # - the <path> could also specify the location of a *remote* (Git( repository,
@@ -1232,10 +1232,11 @@ def _postprocess_config(self):
12321232 self ._ensure_abs_path (opt_name )
12331233
12341234 if self .options .prefix is not None :
1235- # prefix applies to all paths, and repository has to be reinitialised to take new repositorypath in account
1236- # in the legacy-style configuration, repository is initialised in configuration file itself
1237- path_opts = ['buildpath' , 'containerpath' , 'failed_installs_build_dirs_path' , 'failed_installs_logs_path' ,
1238- 'installpath' , 'packagepath' , 'repository' , 'repositorypath' , 'sourcepath' ]
1235+ # prefix applies to selected path configuration options;
1236+ # repository has to be reinitialised to take new repositorypath in account;
1237+ # in the legacy-style configuration, repository is initialised in configuration file itself;
1238+ path_opts = ['buildpath' , 'containerpath' , 'installpath' , 'packagepath' , 'repository' , 'repositorypath' ,
1239+ 'sourcepath' ]
12391240 for dest in path_opts :
12401241 if not self .options ._action_taken .get (dest , False ):
12411242 if dest == 'repository' :
0 commit comments