mirror of
https://github.com/BigJk/end_of_eden.git
synced 2026-02-06 02:37:31 +00:00
14 lines
339 B
Bash
Executable File
14 lines
339 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Updating docs..."
|
|
go run ./cmd/internal/docs > ./docs/LUA_API_DOCS.md
|
|
echo "Done!"
|
|
|
|
echo "Updating game docs..."
|
|
go run ./cmd/internal/docs -type game_content > ./docs/GAME_CONTENT_DOCS.md
|
|
echo "Done!"
|
|
|
|
echo "Updating definitions..."
|
|
go run ./cmd/internal/definitions > ./assets/scripts/definitions/api.lua
|
|
echo "Done!"
|