omg it mostly works for deletes

This commit is contained in:
Andras Schmelczer 2025-03-10 22:49:51 +00:00
parent 054d109ef8
commit d23c1a8dbc
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
6 changed files with 243 additions and 139 deletions

View file

@ -16,7 +16,7 @@ npm run build
pids=()
for i in $(seq 1 $process_count); do
node dist/cli.js 2>&1 | tee "log_${i}.log" &
node dist/cli.js 2>&1 > "log_${i}.log" &
pids+=($!)
done