#When running mts scripts with dagger run node --loader ts-node/esm I don't get a TUI
1 messages · Page 1 of 1 (latest)
When running mts scripts with --loader ts-node/esm I don't get a TUI via dagger run node —loader
When running mts scripts with dagger run node --loader ts-node/esm I don't get a TUI
I think it's because you can only get the TUI if you run it using dagger call, double check with @modern burrow
dagger run should have a TUI too (currently all commands do, v0.12.1 will remove it from primitive ones like version and login)
@grave roost I do get the TUI with v0.12
Okay I figured it out. My node program I was running had a -s argument, which was also being read by the dagger call function to make things silent. Little weird that the the argument ended up being passed both to my program and the dagger cli, but at least it makes sense.
ah yeah that's unfortunate, thanks for following up. You could try dagger run -- <args> and see if that helps, but it might not. Feel free to open an issue, or I'll open one when I'm free