1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-13 01:06:14 +02:00

fix: overwrite compressed logfile if it already exists

Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
This commit is contained in:
David Oberhollenzer 2019-03-06 21:22:03 +01:00
parent a9eb892920
commit dd643ca334

View file

@ -21,5 +21,5 @@ run_pkg_command() {
$FUNCTION "$SRC" &>> "$LOGFILE" < /dev/null
popd > /dev/null
gzip "$LOGFILE"
gzip -f "$LOGFILE"
}