mirror of
https://github.com/simon987/sist2.git
synced 2025-04-04 07:52:59 +00:00
13 lines
401 B
Bash
Executable File
13 lines
401 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
(
|
|
cd ..
|
|
rm -rf index.sist2
|
|
|
|
python3 scripts/mime.py > src/parsing/mime_generated.c
|
|
python3 scripts/serve_static.py > src/web/static_generated.c
|
|
python3 scripts/index_static.py > src/index/static_generated.c
|
|
python3 scripts/magic_static.py > src/magic_generated.c
|
|
|
|
printf "static const char *const Sist2CommitHash = \"%s\";\n" $(git rev-parse HEAD) > src/git_hash.h
|
|
) |