Skip to content

Instantly share code, notes, and snippets.

@douglaslassance
Created July 30, 2022 22:32
Show Gist options
  • Select an option

  • Save douglaslassance/23bfd72b71aa74f4cbef5dbd9c89e319 to your computer and use it in GitHub Desktop.

Select an option

Save douglaslassance/23bfd72b71aa74f4cbef5dbd9c89e319 to your computer and use it in GitHub Desktop.

Revisions

  1. Douglas Lassance created this gist Jul 30, 2022.
    12 changes: 12 additions & 0 deletions DownloadDependencies.bat
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    @echo off
    pushd "%~dp0"

    rem Engine/Documentation is not ignore because the content is needed by GenerateInstalledBuild.bat to work.
    .\Binaries\DotNET\GitDependencies.exe --no-cache --exclude=Samples --exclude=Templates --exclude=FeaturePacks --exclude=Engine/Saved --exclude=Win32 --exclude=win32 --exclude=Mac --exclude=osx64 --exclude=osx32 --exclude=Linux --exclude=linux --exclude=Linux32 --exclude=linux32 --exclude=Linux64 --exclude=linux64 --exclude=linux_x64 --exclude=Android --exclude=android --exclude=HoloLens --exclude=Win32 --exclude=WinRT --exclude=winrt --exclude=HTML5 --exclude=html5 --exclude=XboxOne --exclude=Switch --exclude=Dingo --exclude=PS4 --exclude=Python
    if %errorlevel% neq 0 exit /b %errorlevel%

    rem We do not use templates but the .ini file needs to exist for GenerateInstalledBuild.bat to work.
    mkdir ../Templates
    copy ../Templates/TemplateCategories.ini

    popd