Skip to content

Commit

Permalink
updated build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico-Duduf committed Dec 5, 2022
1 parent 910d997 commit 9dd3cae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -426,5 +426,5 @@ <h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>

<!--
MkDocs version : 1.2.3
Build Date UTC : 2022-12-05 09:22:17.521249+00:00
Build Date UTC : 2022-12-05 09:26:26.784939+00:00
-->
Binary file modified docs/sitemap.xml.gz
Binary file not shown.
6 changes: 5 additions & 1 deletion tools/build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ SET outputPath=%~dp0\build

SET "src_name=dublast"
SET "dublf_path=%repoPath%\..\DuBLF\dublf"
SET "dupyf_path=%repoPath%\..\..\Python\DuPYF\dupyf"

rd /s /q "%outputPath%\%src_name%"
md "%outputPath%\%src_name%"
Expand All @@ -19,5 +20,8 @@ for /f %%a IN ('dir /b "%repoPath%\%src_name%\*.py"') do copy "%repoPath%\%src_n
md "%outputPath%\%src_name%\dublf"
for /f %%a IN ('dir /b "%dublf_path%\*.py"') do copy "%dublf_path%\%%a" "%outputPath%\%src_name%\dublf\%%a"

:: copy dupyf
for /f %%a IN ('dir /b "%dupyf_path%\*.py"') do copy "%dupyf_path%\%%a" "%outputPath%\%src_name%\dublf\%%a"

echo "Done!"
pause
pause./

0 comments on commit 9dd3cae

Please sign in to comment.