diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-04-26 19:37:38 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-04-26 19:37:38 +0200 |
commit | e9d10b50dfa10dc5685d73d387f59772c3ea036d (patch) | |
tree | 34a436948087a306f7fb7b04229651e5d9cba868 /bin | |
parent | beb53459d76f7542faf8da30cad70a5be4a750eb (diff) | |
download | jenkins.debian.net-e9d10b50dfa10dc5685d73d387f59772c3ea036d.tar.xz |
g-i: fix escaping
Diffstat (limited to 'bin')
-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 1751b31e..7cbded62 100755 --- a/bin/g-i-installation.sh +++ b/bin/g-i-installation.sh @@ -102,7 +102,7 @@ cleanup_all() { # create video # ffmpeg2theora --videobitrate $VIDEOBITRATE --no-upscaling snapshot_%06d.ppm --framerate 12 --max_size $VIDEOSIZE -o g-i-installation-$NAME.ogv > /dev/null - rm "snapshot_??????.ppm" + rm snapshot_??????.ppm # rename .bak files back to .ppm if find . -name "*.ppm.bak" > /dev/null ; then for i in $(find * -name "*.ppm.bak") ; do |