From cac2eee4f3a903bbf0cc8a8b64313acaa237593c Mon Sep 17 00:00:00 2001 From: Daniel Moody Date: Tue, 21 Nov 2017 10:31:19 -0500 Subject: fixed mistake in converting from magic numbers where it should have been the not case --- src/engine/SCons/Tool/jar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/SCons/Tool/jar.py b/src/engine/SCons/Tool/jar.py index 6c7a8c9..f833ba2 100644 --- a/src/engine/SCons/Tool/jar.py +++ b/src/engine/SCons/Tool/jar.py @@ -52,7 +52,7 @@ def jarSources(target, source, env, for_signature): result = [] for src in source: contents = src.get_text_contents() - if contents.startswith("Manifest-Version"): + if not contents.startswith("Manifest-Version"): if jarchdir_set: _chdir = jarchdir else: -- cgit v0.12