updates
CI / test (push) Failing after 4m57s

This commit is contained in:
Raven Scott
2026-04-02 22:43:46 -04:00
parent 2e26b14250
commit c337a8aaa6
62 changed files with 1099 additions and 23 deletions
+14
View File
@@ -0,0 +1,14 @@
/** Shared helpers for drive-resident /bin scripts (prepended before each command). */
function bareStdin(ctx) {
return typeof ctx.shellStdin === 'string' ? ctx.shellStdin : ''
}
async function run(ctx, argv) {
const tty = globalThis.process?.stdout?.isTTY
if (tty) {
ctx.console.log('/dev/tty')
} else {
ctx.console.log('not a tty')
ctx.exitCode = 1
}
}