#I have one more. Sorry for the issue

1 messages ยท Page 1 of 1 (latest)

brazen ginkgo
#

dont apologize, we appreciate the issue reports.

Can you share an example call, I think I have seen something like this too but want to make sure we're talking about the same thing.

meager sigil
#

let me see if I can repro in a new module. My current modules have deps and will be hard to understand

#

This demonstrates it because the renovate image is pretty big

package main

import (
    "dagger/renovate-test/internal/dagger"
)

type RenovateTest struct{}

// Returns a container that echoes whatever string argument is provided
func (m *RenovateTest) ContainerEcho(stringArg string) *dagger.Container {
    return dag.Container().From("renovate/renovate:latest").WithExec([]string{"echo", stringArg}).Terminal()
}

Command to run dagger call container-echo --string-arg "terminal freeze"

brazen ginkgo
#

This is perfect, so ideall you'd be able to move around in the TUI or check the output of one of these steps instead of seeing it freeze like this right?

brazen ginkgo
pallid seal
brazen ginkgo