mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-12 10:22:12 +02:00
12 lines
221 B
Bash
Executable File
12 lines
221 B
Bash
Executable File
#!/bin/env sh
|
|
|
|
# make the script exit if any of the commands fail,
|
|
# making fastfetch not run if the build failed.
|
|
set -e
|
|
|
|
mkdir -p build/
|
|
cd build/
|
|
cmake ..
|
|
cmake --build . --target fastfetch -j$(nproc)
|
|
./fastfetch "$@"
|