Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions uberenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -978,9 +978,9 @@ def concretize_spack_env(self):
sexe(spack_concretize_cmd, echo=True)

def clean_build(self):
# clean out any spack cached stuff (except build stages, downloads, &
# spack's bootstrapping software)
cln_cmd = "{0} clean --misc-cache --failures --python-cache".format(self.spack_exe(use_spack_env=False))
# clean out any spack cached stuff (except build stages, downloads)
# note: we now clean out spack bootstrap b/c ~/.spack contents can undermine bootstrap
cln_cmd = "{0} clean -b --misc-cache --failures --python-cache".format(self.spack_exe(use_spack_env=False))
res = sexe(cln_cmd, echo=True)

# check if we need to force uninstall of selected packages
Expand Down