6 lines
59 B
Bash
Executable file
6 lines
59 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -o pipefail
|
|
set -e
|
|
|
|
make "$@" 2>&1 | tail
|