chore(tts): suppress stderr output after initial setup
This commit is contained in:
parent
4c0e25ad33
commit
7b173c68f5
1 changed files with 9 additions and 1 deletions
10
src/tts.ts
10
src/tts.ts
|
|
@ -62,6 +62,14 @@ async function main() {
|
||||||
|
|
||||||
const home = os.homedir();
|
const home = os.homedir();
|
||||||
const cwd = path.join(home, ".ttsc");
|
const cwd = path.join(home, ".ttsc");
|
||||||
|
const firstRun = await (async () => {
|
||||||
|
try {
|
||||||
|
await fs.access(cwd, fs.constants.F_OK);
|
||||||
|
return false;
|
||||||
|
} catch {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
|
||||||
if (editContent) {
|
if (editContent) {
|
||||||
const file = path.join(cwd, "input.txt");
|
const file = path.join(cwd, "input.txt");
|
||||||
|
|
@ -90,7 +98,7 @@ async function main() {
|
||||||
cwd,
|
cwd,
|
||||||
input,
|
input,
|
||||||
stdout: "pipe",
|
stdout: "pipe",
|
||||||
stderr: "inherit",
|
stderr: firstRun ? "inherit" : "ignore",
|
||||||
})`uv run -- python -u main.py`;
|
})`uv run -- python -u main.py`;
|
||||||
|
|
||||||
if (!waitAndCombine) {
|
if (!waitAndCombine) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue