mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-22 13:06:27 +02:00
- Properly differentiate between bad requests and internal server errors - Avoid clean up evasion by putting the cleanup in the finally block
20 lines
No EOL
356 B
Bash
Executable file
20 lines
No EOL
356 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Put instructions to build your package in here
|
|
PREFIX=$(realpath $(dirname $0))
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
curl "https://ftp.gnu.org/gnu/bash/bash-5.2.tar.gz" -o bash.tar.gz
|
|
|
|
tar xzf bash.tar.gz --strip-components=1
|
|
|
|
# === autoconf based ===
|
|
./configure --prefix "$PREFIX"
|
|
|
|
make -j$(nproc)
|
|
make install -j$(nproc)
|
|
cd ../
|
|
rm -rf build |