diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-05-30 09:35:19 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-05-30 09:35:19 +0300 |
commit | c4e3055fce1519471869784b55d06ada8870ac31 (patch) | |
tree | 72cb7a891659489defbdf5f7d76b939347a54049 /build | |
parent | 929a76b832fdbeee20dcd35668a8ed1372ff71f8 (diff) | |
download | vaadin-framework-c4e3055fce1519471869784b55d06ada8870ac31.tar.gz vaadin-framework-c4e3055fce1519471869784b55d06ada8870ac31.zip |
Make clean-all remove screenshot errors
Diffstat (limited to 'build')
-rw-r--r-- | build/build.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build/build.xml b/build/build.xml index 4f654310c0..7771100c6b 100644 --- a/build/build.xml +++ b/build/build.xml @@ -63,6 +63,11 @@ </path> </target> <target name="clean-all" depends="clean-result"> + <delete failonerror="false"> + <fileset dir="${com.vaadin.testbench.screenshot.directory}/errors"> + <include name="*.png" /> + </fileset> + </delete> </target> <!-- ================================================================== --> |