INNER CODE UNIT · TypeScript
check_changed_files_for_nul_bytes
NVIDIA/NemoClaw · .dsh/tools/check_changed_files_for_nul_bytes/index.ts:4
export default async function check_changed_files_for_nul_bytes(input: {
workdir: string;
baseRef?: string;
}): Promise<{
ok: boolean;
checked: Integer;
files: string[];
findings: { file: string; count: Integer }[];
changed: {
baseRef: string;
files: string[];
branchFiles: string[];
workingTreeFiles: string[];
untrackedFiles: string[];
};
}> {
const changed = await tools.list_nemoclaw_changed_files({
workdir: input.workdir,