We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
runCommand
1 parent 3d54c12 commit 8f0404dCopy full SHA for 8f0404d
packages/javascript/CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog (JavaScript)
2
3
+## 1.9.4 (2025-03-12)
4
+
5
+- The `machini` packages have now been merged into the `qsu` package
6
7
## 1.9.3 (2025-03-08)
8
9
- `generateLicense`: Add bsd3 license
packages/javascript/lib/node/os/runCommand.ts
@@ -12,11 +12,9 @@ export function runCommand(command: string): Promise<string | null> {
12
return;
13
}
14
15
- const output = stdout.split(EOL)?.[0];
16
-
17
execCommandProcess?.stdin?.end();
18
19
- resolve(output);
+ resolve(stdout.replace(new RegExp(`${EOL}$`), ''));
20
21
);
22
});
0 commit comments