ryobg / JContainers

JSON-based data structures for Papyrus - the TESV Skyrim SE scripting language
MIT License
107 stars 23 forks source link

Allow build_boost.bat to take msvc argument if present. #74

Closed MrOctopus closed 3 years ago

MrOctopus commented 3 years ago

The commit is functionally identical to the following code:

    if [%1]==[] (
        call bootstrap.bat
    ) else (
        call bootstrap.bat %1
    )

If no argument is provided, bootstrap.bat will default to the global version. This PR should allow JContainers to more easily be built in Github CI Workflows.

Closes #72