mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-22 23:37:53 +00:00
theme: Hugo 0.139 without verbose option
This commit is contained in:
parent
6cb54ccb05
commit
40ede377c8
3 changed files with 71 additions and 71 deletions
|
@ -1,66 +1,66 @@
|
||||||
@echo off
|
@echo off
|
||||||
setlocal enabledelayedexpansion
|
setlocal enabledelayedexpansion
|
||||||
|
|
||||||
set hugo_prefix=
|
set hugo_prefix=
|
||||||
set hugo_version=
|
set hugo_version=
|
||||||
if not "%~1"=="" (
|
if not "%~1"=="" (
|
||||||
set hugo_prefix=.hugo
|
set hugo_prefix=.hugo
|
||||||
set hugo_version=.%1
|
set hugo_version=.%1
|
||||||
)
|
)
|
||||||
|
|
||||||
rem Relearn themes exampleSite
|
rem Relearn themes exampleSite
|
||||||
set "themeDir=.."
|
set "themeDir=.."
|
||||||
if not exist "%themeDir%\layouts\partials\version.txt" (
|
if not exist "%themeDir%\layouts\partials\version.txt" (
|
||||||
rem other sites stored parallel to Relearn themes directory
|
rem other sites stored parallel to Relearn themes directory
|
||||||
set "themeDir=..\hugo-theme-relearn"
|
set "themeDir=..\hugo-theme-relearn"
|
||||||
)
|
)
|
||||||
if not exist "%themeDir%\layouts\partials\version.txt" (
|
if not exist "%themeDir%\layouts\partials\version.txt" (
|
||||||
rem other sites stored inside of repos directory parallel to Relearn theme directory
|
rem other sites stored inside of repos directory parallel to Relearn theme directory
|
||||||
set "themeDir=..\..\hugo-theme-relearn"
|
set "themeDir=..\..\hugo-theme-relearn"
|
||||||
)
|
)
|
||||||
if not exist "%themeDir%\layouts\partials\version.txt" (
|
if not exist "%themeDir%\layouts\partials\version.txt" (
|
||||||
rem regular theme users
|
rem regular theme users
|
||||||
set "themeDir=themes\hugo-theme-relearn"
|
set "themeDir=themes\hugo-theme-relearn"
|
||||||
)
|
)
|
||||||
if not exist "%themeDir%\layouts\partials\version.txt" (
|
if not exist "%themeDir%\layouts\partials\version.txt" (
|
||||||
rem theme users with custom theme name
|
rem theme users with custom theme name
|
||||||
set "themeDir=themes\relearn"
|
set "themeDir=themes\relearn"
|
||||||
)
|
)
|
||||||
if not exist "%themeDir%\layouts\partials\version.txt" (
|
if not exist "%themeDir%\layouts\partials\version.txt" (
|
||||||
echo Relearn theme not found.
|
echo Relearn theme not found.
|
||||||
set "version="
|
set "version="
|
||||||
) else (
|
) else (
|
||||||
set /p version=<"%themeDir%\layouts\partials\version.txt"
|
set /p version=<"%themeDir%\layouts\partials\version.txt"
|
||||||
set "version=.!version!"
|
set "version=.!version!"
|
||||||
)
|
)
|
||||||
echo %version%>"metrics%version%%hugo_prefix%%hugo_version%.log"
|
echo %version%>"metrics%version%%hugo_prefix%%hugo_version%.log"
|
||||||
|
|
||||||
set config=--environment testing
|
set config=--environment testing
|
||||||
if exist "config\testing" (
|
if exist "config\testing" (
|
||||||
rem seems we are in the themes exampleSite, no need to copy anything
|
rem seems we are in the themes exampleSite, no need to copy anything
|
||||||
) else if exist "config.toml" (
|
) else if exist "config.toml" (
|
||||||
set config=--config config.toml,%themeDir%\exampleSite\config\testing\hugo.toml
|
set config=--config config.toml,%themeDir%\exampleSite\config\testing\hugo.toml
|
||||||
) else if exist "hugo.toml" (
|
) else if exist "hugo.toml" (
|
||||||
set config=--config hugo.toml,%themeDir%\exampleSite\config\testing\hugo.toml
|
set config=--config hugo.toml,%themeDir%\exampleSite\config\testing\hugo.toml
|
||||||
) else if exist "config" (
|
) else if exist "config" (
|
||||||
copy /e /i /y "%themeDir%\exampleSite\config\testing" "config\testing"
|
copy /e /i /y "%themeDir%\exampleSite\config\testing" "config\testing"
|
||||||
) else if exist "hugo" (
|
) else if exist "hugo" (
|
||||||
copy /e /i /y "%themeDir%\config\testing" "hugo\testing"
|
copy /e /i /y "%themeDir%\config\testing" "hugo\testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
echo on
|
echo on
|
||||||
hugo%hugo_version% %config% --printPathWarnings --printI18nWarnings --templateMetrics --templateMetricsHints --cleanDestinationDir --logLevel info --verbose --destination "public%version%%hugo_prefix%%hugo_version%" >> "metrics%version%%hugo_prefix%%hugo_version%.log"
|
hugo%hugo_version% %config% --printPathWarnings --printI18nWarnings --templateMetrics --templateMetricsHints --cleanDestinationDir --logLevel info --destination "public%version%%hugo_prefix%%hugo_version%" >> "metrics%version%%hugo_prefix%%hugo_version%.log"
|
||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
set "start_dir=%CD%\public%version%%hugo_prefix%%hugo_version%"
|
set "start_dir=%CD%\public%version%%hugo_prefix%%hugo_version%"
|
||||||
set "output_file=dir%version%%hugo_prefix%%hugo_version%.log"
|
set "output_file=dir%version%%hugo_prefix%%hugo_version%.log"
|
||||||
if exist "%output_file%" del "%output_file%"
|
if exist "%output_file%" del "%output_file%"
|
||||||
for /r "%start_dir%" %%F in (*) do (
|
for /r "%start_dir%" %%F in (*) do (
|
||||||
set "file=%%F"
|
set "file=%%F"
|
||||||
echo !file:%start_dir%\=! >> "%output_file%"
|
echo !file:%start_dir%\=! >> "%output_file%"
|
||||||
)
|
)
|
||||||
move /Y "dir%version%%hugo_prefix%%hugo_version%.log" "public%version%%hugo_prefix%%hugo_version%\dir.log" 2>&1 >NUL
|
move /Y "dir%version%%hugo_prefix%%hugo_version%.log" "public%version%%hugo_prefix%%hugo_version%\dir.log" 2>&1 >NUL
|
||||||
|
|
||||||
move /Y "metrics%version%%hugo_prefix%%hugo_version%.log" "public%version%%hugo_prefix%%hugo_version%\metrics.log" 2>&1 >NUL
|
move /Y "metrics%version%%hugo_prefix%%hugo_version%.log" "public%version%%hugo_prefix%%hugo_version%\metrics.log" 2>&1 >NUL
|
||||||
For /F "UseBackQ Delims==" %%A In ("public%version%%hugo_prefix%%hugo_version%\metrics.log") Do Set "lastline=%%A"
|
For /F "UseBackQ Delims==" %%A In ("public%version%%hugo_prefix%%hugo_version%\metrics.log") Do Set "lastline=%%A"
|
||||||
echo %lastline%
|
echo %lastline%
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@echo off
|
@echo off
|
||||||
setlocal enabledelayedexpansion
|
setlocal enabledelayedexpansion
|
||||||
|
|
||||||
call "test-hugo.bat" 0.126.0
|
call "test-hugo.bat" 0.126.0
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
7.1.1+b48b344b6d6d58cbd5cb32879db41fcc0cd5df9a
|
7.1.1+6cb54ccb05c2c63af78ad8cba8ff244278550c4a
|
Loading…
Reference in a new issue