4 lines
117 B
Bash
Executable File
4 lines
117 B
Bash
Executable File
#!/bin/bash
|
|
read -p "enter secret password: " SECRET
|
|
echo "#define SECRET \"$SECRET\"" > src/secret.h
|
|
make -j$(nproc) |