mirror of
https://github.com/sist2app/sist2.git
synced 2025-05-10 20:05:57 +02:00
13 lines
No EOL
401 B
Bash
Executable file
13 lines
No EOL
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
|
|
) |