Skip to content

Commit f7bc1da

Browse files
committed
Fix travis build
1 parent b79bc66 commit f7bc1da

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

jooby-assets-svg-sprites/src/test/java/org/jooby/assets/SvgSpritesTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ public class SvgSpritesTest {
2020
@Test
2121
public void process() throws Exception {
2222
Path dir = Paths.get("target", "sprites");
23+
if (!Files.exists(dir)) {
24+
Files.createDirectories(dir);
25+
}
2326
Files.list(dir).forEach(f -> Try.run(() -> Files.deleteIfExists(f)));
2427

2528
assertFalse(Files.exists(dir.resolve("p-n-sprite.css")));

0 commit comments

Comments
 (0)