Andrew Woodlee
4b382bddd9
* Getting environment variables and passwords from Vault (not tested yet) * Vault configuration to config (not tested yet) * Ability to run scripts from file on local machine on the remote host * Ability to get ouput in the notification of a list for individual commands or all commands * Make SSH connections close after all commands have been run; reuse previous connections if needed
19 lines
736 B
Batchfile
19 lines
736 B
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
set /p version=<..\layouts\partials\version.txt
|
|
echo %version%>metrics.%version%.log
|
|
hugo --environment testing --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
|
|
For /F "UseBackQ Delims==" %%A In ("public.%version%\metrics.log") Do Set "lastline=%%A"
|
|
echo %lastline%
|