7 lines
54 B
Text
7 lines
54 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -o pipefail
|
||
|
set -e
|
||
|
|
||
|
make "$@" | tail
|