moved settings file to project root

This commit is contained in:
Michael H.G. Schmidt 2021-03-31 14:49:02 +02:00
parent 68405f0488
commit ebb1f49c47
3 changed files with 10 additions and 5 deletions

View File

@ -95,8 +95,8 @@ if EXIST %SOURCES%\%IMAGE% (
)
:CONT
echo.
if EXIST tools (
echo.
echo copying folder [ tools ] to drive %USBDRIVE% ...
robocopy tools %USBDRIVE%\tools /COPY:DT /FFT /XO /256 /NJH /NJS /NDL /XF .gitignore
)
@ -116,6 +116,12 @@ for %%P in (scripts source optional personal) do (
)
)
if EXIST settings.cmd (
echo.
echo copying settings file to drive %USBDRIVE% ...
copy /Y settings.cmd %USBDRIVE%\tools\scripts
)
echo.
echo copying custom setup script to %USBDRIVE% ...
copy /Y boot\CustomSetup.cmd %USBDRIVE%\

View File

@ -1,4 +0,0 @@
set windows_updates=1
set logon_logo=1
set install_firefox=1

View File

@ -1,2 +1,5 @@
set LANG=de-DE
set windows_updates=1
set logon_logo=1
set install_firefox=1