Files
fastfetch/run.sh
T

12 lines
221 B
Bash
Raw Normal View History

2021-06-14 14:22:28 +05:30
#!/bin/env sh
# make the script exit if any of the commands fail,
# making fastfetch not run if the build failed.
set -e
2021-02-18 22:25:36 +01:00
mkdir -p build/
cd build/
cmake ..
2022-01-12 01:02:14 +01:00
cmake --build . --target fastfetch -j$(nproc)
2021-02-20 20:00:06 +01:00
./fastfetch "$@"