We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a52ed4 commit aab8180Copy full SHA for aab8180
scompose/project/instance.py
@@ -289,10 +289,15 @@ def build(self, working_dir):
289
sudo = not ("--fakeroot" in options or "--remote" in options)
290
291
bot.info('Building %s' % self.name)
292
- self.client.build(image=sif_binary,
293
- recipe=self.recipe,
294
- options=options,
295
- sudo=sudo)
+
+ _, stream = self.client.build(image=sif_binary,
+ recipe=self.recipe,
+ options=options,
296
+ sudo=sudo,
297
+ stream=True)
298
299
+ for line in stream:
300
+ print(line)
301
302
except:
303
build = "sudo singularity build %s %s" % (os.path.basename(sif_binary),
0 commit comments