diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-12-13 01:23:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-13 01:23:40 -0800 |
commit | 8496d8ff778e9c7dfb4dcb5557e8cfad36124620 (patch) | |
tree | b78f8f2214a0fdf5a9674bb27be6149af908f5bd /bin | |
parent | 9f713829126f5d5e354402ee38aff97c145e89ab (diff) | |
download | spack-8496d8ff778e9c7dfb4dcb5557e8cfad36124620.tar.gz spack-8496d8ff778e9c7dfb4dcb5557e8cfad36124620.tar.bz2 spack-8496d8ff778e9c7dfb4dcb5557e8cfad36124620.tar.xz spack-8496d8ff778e9c7dfb4dcb5557e8cfad36124620.zip |
Add a test to ensure package names have the right case. (#2562)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/spack | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -156,8 +156,8 @@ def main(): import spack.util.debug as debug debug.register_interrupt_handler() - from spack.yaml_version_check import check_yaml_versions - check_yaml_versions() + # Run any available pre-run hooks + spack.hooks.pre_run() spack.spack_working_dir = working_dir if args.mock: |