mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:14:37 +02:00
8 lines
181 B
Bash
Executable File
8 lines
181 B
Bash
Executable File
#!/bin/env sh
|
|
rm -rf tests/build/
|
|
mkdir -p tests/build/
|
|
cd tests/build/
|
|
cmake ../..
|
|
cmake --build . --target fastfetch-test-performance -j$(nproc)
|
|
./fastfetch-test-performance "$@"
|