Problem
txc env solution import returns immediately with status: Queued (async). The developer must guess how long to wait before running txc env solution publish. If they publish too early, it fails with 'Cannot start PublishAll because Import is running'.
Recommendation
Add --wait flag that polls the import job status and blocks until it completes (or fails), then returns the final status. This enables reliable scripting: txc env solution import ... --wait && txc env solution publish.
Problem
txc env solution importreturns immediately withstatus: Queued (async). The developer must guess how long to wait before runningtxc env solution publish. If they publish too early, it fails with 'Cannot start PublishAll because Import is running'.Recommendation
Add
--waitflag that polls the import job status and blocks until it completes (or fails), then returns the final status. This enables reliable scripting:txc env solution import ... --wait && txc env solution publish.