summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-03-17 04:35:28 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-03-17 04:35:28 (EDT)
commit8f8a0fe145e0302c453993bc9a92b9f3387b4aa9 (patch)
tree8e02535dc19c6cde673ed735da280051d3ae68dd /lib
parent1796d747a60381a6bb57326904bef17d6230a49d (diff)
_ob_try_load_messages(): Fix logic
Diffstat (limited to 'lib')
-rw-r--r--lib/locale.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/locale.sh b/lib/locale.sh
index ee37a15..5898c32 100644
--- a/lib/locale.sh
+++ b/lib/locale.sh
@@ -41,7 +41,7 @@ _ob_try_load_messages()
shift 1 || _ob_abort
local ms=
- if [ x"${_ob_builddir}" = x'' ]; then # Env var set and not null
+ if [ x"${_ob_builddir}" != x'' ]; then # Env var set and not null
ms="${_ob_builddir}"
ms="${ms}/${locale}/${_ob_text_domain}.ms"
else