mirror of
https://codeberg.org/AntumLuanti/mod-cleaner.git
synced 2025-03-19 06:41:20 +00:00
14 lines
231 B
Bash
14 lines
231 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
docs="$(dirname $(readlink -f $0))"
|
||
|
root="$(dirname ${docs})"
|
||
|
config="${docs}/config.ld"
|
||
|
|
||
|
cd "${root}"
|
||
|
|
||
|
# Clean old files
|
||
|
rm -rf "${docs}/api"
|
||
|
|
||
|
# Create new files
|
||
|
ldoc -c "${config}" -d "${docs}/api" "${root}/api.lua"
|