Avoid double push

This commit is contained in:
jpic 2020-02-16 19:37:18 +01:00
parent f4844b0e73
commit 2e3b9d8e5b

View File

@ -160,7 +160,7 @@ class Buildah(Localhost):
if self.status == 'success':
await self.commit()
if 'push' in args or os.getenv('CI'):
if 'push' in args:
await self.push()
if self.mnt is not None: