summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Fangohr <fangohr@users.noreply.github.com>2022-11-28 17:49:57 -0600
committerGitHub <noreply@github.com>2022-11-28 16:49:57 -0700
commit56f9c763947c05b8477c720b29db18cd07a95e55 (patch)
tree62a945f802f10cbfba7b7ba4672d112e4b50b665
parent49cda811fcfed53f24fa4f71456ddc5ee1477659 (diff)
downloadspack-56f9c763947c05b8477c720b29db18cd07a95e55.tar.gz
spack-56f9c763947c05b8477c720b29db18cd07a95e55.tar.bz2
spack-56f9c763947c05b8477c720b29db18cd07a95e55.tar.xz
spack-56f9c763947c05b8477c720b29db18cd07a95e55.zip
fix typo in path for sanity check (#34117)
- typo breaks install
-rw-r--r--var/spack/repos/builtin/packages/oommf/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/oommf/package.py b/var/spack/repos/builtin/packages/oommf/package.py
index b584919c72..f7a471d300 100644
--- a/var/spack/repos/builtin/packages/oommf/package.py
+++ b/var/spack/repos/builtin/packages/oommf/package.py
@@ -118,7 +118,7 @@ class Oommf(Package):
# sanity checks: (https://spack.readthedocs.io/en/latest/packaging_guide.html#checking-an-installation)
sanity_check_is_file = [join_path("bin", "oommf.tcl")]
- sanity_check_is_dir = ["usr/bin/oommf/app", "usr/bin/oommf/app/oxs/eamples"]
+ sanity_check_is_dir = ["usr/bin/oommf/app", "usr/bin/oommf/app/oxs/examples"]
def get_oommf_source_root(self):
"""If we download the source from NIST, then 'oommf.tcl' is in the root directory.