diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-12-22 00:40:08 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-12-22 00:40:08 (EST) |
commit | 6f58506752e09351d006699bd07d650e09fd4b60 (patch) | |
tree | 27f3e4e06d428afa7722123733a71dea80cfd706 /tests | |
parent | a90ff196927570003b172f99da7af55fc1e916e7 (diff) |
libopkbuild: Change output file extension to .sho
Diffstat (limited to 'tests')
-rw-r--r-- | tests/common.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/common.sh b/tests/common.sh index 2075558..b45d316 100644 --- a/tests/common.sh +++ b/tests/common.sh @@ -21,7 +21,7 @@ BUILDDIR="${PWD}/.." # The "common" module is used by all library modules. # We have to manually load the "common" module so we can use it in ob_use. -. "${BUILDDIR}/lib/common.sm" +. "${BUILDDIR}/lib/common.sho" ob_use() { @@ -33,7 +33,7 @@ ob_use() return 125 fi - module="${BUILDDIR}/lib/${module}.sm" + module="${BUILDDIR}/lib/${module}.sho" if [ -r "${module}" ]; then . "${module}" else |