~comcloudway/builds.sr.ht

4ea079faadf3611b9760e6358fc262ecd6873d2a — Drew DeVault 5 years ago ac2577a
Fix builds which don't specify shell preference
1 files changed, 1 insertions(+), 1 deletions(-)

M buildsrht/manifest.py
M buildsrht/manifest.py => buildsrht/manifest.py +1 -1
@@ 83,7 83,7 @@ class Manifest:
                raise Exception("Expected secrets to be a UUID array")
            # Will throw exception on invalid UUIDs as well
            secrets = list(map(uuid.UUID, secrets))
        if not isinstance(shell, bool):
        if shell is not None and not isinstance(shell, bool):
            raise Exception("Expected shell to be a boolean")
        self.image = image
        self.arch = arch