This is an automated email from the ASF dual-hosted git repository.
kturner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/fluo-muchos.git
The following commit(s) were added to refs/heads/master by this push:
new 80281f2 Skip checksum check for SNAPSHOT version (#262)
80281f2 is described below
commit 80281f2a9864d59c97e762dfcdc6ba7f44c47e5e
Author: Keith Turner <[email protected]>
AuthorDate: Mon Jul 15 12:12:07 2019 -0400
Skip checksum check for SNAPSHOT version (#262)
---
lib/muchos/config.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lib/muchos/config.py b/lib/muchos/config.py
index 05a613a..c8d5440 100644
--- a/lib/muchos/config.py
+++ b/lib/muchos/config.py
@@ -167,6 +167,9 @@ class DeployConfig(ConfigParser):
if not os.path.isfile(self.checksums_path):
exit('ERROR - A checksums file does not exist at %s' %
self.hosts_path)
+ if "SNAPSHOT" in version:
+ return ""
+
if not self.checksums_d:
self.checksums_d = {}
with open(self.checksums_path) as f: