mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
Group paths using node:path.sep so POSIX backslashes remain filename characters while Windows continues to treat them as separators.
11 lines
167 B
Bash
Executable File
11 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
printf '%s\n' \
|
|
'archive/a.ts' \
|
|
'archive/b.ts' \
|
|
'archive/c.ts' \
|
|
'old\one' \
|
|
'old\two' \
|
|
'src/index.ts' \
|
|
'docs/guide.md' \
|
|
'test/spec.ts'
|