mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
test: add file list
This commit is contained in:
parent
aaa25e1322
commit
2f010f3944
2 changed files with 32 additions and 10 deletions
|
@ -1,11 +1,22 @@
|
|||
@echo off
|
||||
set /p version=<..\layouts\partials\version.txt
|
||||
echo %version%>metrics.%version%.txt
|
||||
setlocal enabledelayedexpansion
|
||||
set /p version=<..\layouts\partials\version.log
|
||||
echo %version%>metrics.%version%.log
|
||||
echo disableAssetsBusting=true>>config.toml
|
||||
echo disableGeneratorVersion=true>>config.toml
|
||||
echo disableRandomIds=true>>config.toml
|
||||
hugo --templateMetrics --templateMetricsHints --cleanDestinationDir --destination public.%version% >> metrics.%version%.txt
|
||||
move /Y metrics.%version%.txt public.%version%\metrics.txt 2>&1 >NUL
|
||||
hugo --templateMetrics --templateMetricsHints --cleanDestinationDir --destination public.%version% >> metrics.%version%.log
|
||||
|
||||
set "start_dir=%CD%\public.%version%"
|
||||
set "output_file=dir.%version%.log"
|
||||
if exist "%output_file%" del "%output_file%"
|
||||
for /r "%start_dir%" %%F in (*) do (
|
||||
set "file=%%F"
|
||||
echo !file:%start_dir%\=! >> "%output_file%"
|
||||
)
|
||||
move /Y dir.%version%.log public.%version%\dir.log 2>&1 >NUL
|
||||
|
||||
move /Y metrics.%version%.log public.%version%\metrics.log 2>&1 >NUL
|
||||
git restore config.toml
|
||||
For /F "UseBackQ Delims==" %%A In ("public.%version%\metrics.txt") Do Set "lastline=%%A"
|
||||
For /F "UseBackQ Delims==" %%A In ("public.%version%\metrics.log") Do Set "lastline=%%A"
|
||||
echo %lastline%
|
||||
|
|
|
@ -1,13 +1,24 @@
|
|||
@echo off
|
||||
setlocal enabledelayedexpansion
|
||||
set hugo_major=0
|
||||
set hugo_minor=95
|
||||
set hugo_patch=0
|
||||
set /p version=<..\layouts\partials\version.txt
|
||||
echo %version%>metrics.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%.txt
|
||||
set /p version=<..\layouts\partials\version.log
|
||||
echo %version%>metrics.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%.log
|
||||
echo disableAssetsBusting=true>>config.toml
|
||||
echo disableGeneratorVersion=true>>config.toml
|
||||
hugo.%hugo_major%.%hugo_minor%.%hugo_patch% --templateMetrics --templateMetricsHints --cleanDestinationDir --destination public.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch% >> metrics.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%.txt
|
||||
move /Y metrics.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%.txt public.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%\metrics.txt 2>&1 >NUL
|
||||
hugo.%hugo_major%.%hugo_minor%.%hugo_patch% --templateMetrics --templateMetricsHints --cleanDestinationDir --destination public.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch% >> metrics.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%.log
|
||||
|
||||
set "start_dir=%CD%\public.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%"
|
||||
set "output_file=dir.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%.log"
|
||||
if exist "%output_file%" del "%output_file%"
|
||||
for /r "%start_dir%" %%F in (*) do (
|
||||
set "file=%%F"
|
||||
echo !file:%start_dir%\=! >> "%output_file%"
|
||||
)
|
||||
move /Y dir.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%.log public.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%\dir.log 2>&1 >NUL
|
||||
|
||||
move /Y metrics.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%.log public.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%\metrics.log 2>&1 >NUL
|
||||
git restore config.toml
|
||||
For /F "UseBackQ Delims==" %%A In ("public.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%\metrics.txt") Do Set "lastline=%%A"
|
||||
For /F "UseBackQ Delims==" %%A In ("public.%version%.hugo.%hugo_major%.%hugo_minor%.%hugo_patch%\metrics.log") Do Set "lastline=%%A"
|
||||
echo %lastline%
|
||||
|
|
Loading…
Reference in a new issue