mirror of
https://github.com/MaintainTeam/Hypatia.git
synced 2025-03-01 05:48:23 +03:00
11 lines
334 B
Bash
11 lines
334 B
Bash
|
#!/bin/sh
|
||
|
#License: CC0
|
||
|
|
||
|
rm production/index.html
|
||
|
cp template.html production/index.html
|
||
|
echo "<pre>" >> production/index.html
|
||
|
sed -i "s/\[DATE\]/$(date -u)/" production/index.html
|
||
|
java -jar HypatiaDatabaseConverter-0.1__.jar raw/ >> production/index.html
|
||
|
echo "</pre>" >> production/index.html
|
||
|
mv raw/hypatia-*-bloom.bin production/
|