When serving a website, delete the unzipped directory if the index file is not found.

This is a quick solution to rebuild directory structures with missing files. This whole area of the code needs some reworking, as serving the site from a temporary folder is not a robust long term solution.
This commit is contained in:
CalDescent
2021-07-10 15:51:46 +01:00
parent f938d8c878
commit 5a95c827b4
2 changed files with 18 additions and 1 deletions

View File

@@ -450,6 +450,11 @@
<artifactId>commons-text</artifactId>
<version>${commons-text.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
<!-- For bitset/bitmap compression -->
<dependency>
<groupId>io.druid</groupId>