diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-04-28 15:45:30 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-04-28 15:45:30 +0200 |
commit | 01d3bd8b867854ed98db28aaa8e5668ee13f6b9e (patch) | |
tree | e96e5c21d00d31e14fe30e8c15008c25554d5c39 | |
parent | fae844d5747e16e7497ed2402427947f7e18de2f (diff) | |
download | jenkins.debian.net-01d3bd8b867854ed98db28aaa8e5668ee13f6b9e.tar.xz |
g-i: fix image filename prefix
-rwxr-xr-x | bin/g-i-installation.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh index daaf019c..bd1df69f 100755 --- a/bin/g-i-installation.sh +++ b/bin/g-i-installation.sh @@ -816,7 +816,7 @@ monitor_system() { GOCR=$(mktemp) # shave 112 pixels on the sides and 84 on top+bottom # so that 1024x768 becomes 800x600 - convert -shave 112x84 ${PRINTF_NR}.ppm $GOCR.ppm + convert -shave 112x84 snapshot_${PRINTF_NR}.ppm $GOCR.ppm gocr $GOCR.ppm > $GOCR LAST_LINE=$(tail -1 $GOCR |cut -d "]" -f2- || true) STACK_LINE=$(egrep "(Call Trace|end trace)" $GOCR || true) |