1/* 2 * process.ts 3 * 4 * Copyright (C) 2025 Posit Software, PBC 5 */ 6 7export const call = async (path: string, opts: Deno.CommandOptions = {}) => { 8 const cmd = new Deno.Command(path, opts); 9 return cmd.output(); 10}; 11 12