syndicate-rs/dev-scripts/run-server

8 lines
201 B
Plaintext
Raw Permalink Normal View History

2021-08-13 16:41:48 +00:00
#!/bin/sh
2024-04-10 09:07:22 +00:00
TASKSET='taskset -c 0,1'
if [ $(uname -s) = 'Darwin' ]
then
TASKSET=
fi
make -C ../syndicate-server binary && exec $TASKSET ../target/release/syndicate-server -c benchmark-config.pr "$@"