Files
bare-operating-system/packages/bare-os-seeder/kernel/bin/hdms
T
Raven Scott 342b6040fe
CI / test (push) Successful in 9m48s
Update
2026-04-03 02:49:18 -04:00

13 lines
343 B
Plaintext

/** 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) {
if (typeof ctx.runHdms === 'function') {
await ctx.runHdms(argv)
return
}
ctx.console.error('hdms: unavailable')
}