i wonder if this works

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@424 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-19 17:11:16 +00:00
parent 6cf06b63cc
commit ac0e0981ff

View File

@@ -3,5 +3,13 @@
proc run {project_name} { proc run {project_name} {
if { "$project_name" == "MilskoDoxygen" } { if { "$project_name" == "MilskoDoxygen" } {
RunCommand "doxygen"
RunCommand "rm -rf /var/www/milsko-doxygen"
RunCommand "mv doxygen/html /var/www/milsko-doxygen"
} else {
RunCommand "make clean"
if { "$project_name" == "MilskoLinux" } {
RunCommand "make -j4"
}
} }
} }