mirror of
https://github.com/ModOrganizer2/modorganizer-installer_omod.git
synced 2026-07-27 14:07:51 -07:00
Change IOrganizer::profile return type to a shared_ptr (#15)
This commit is contained in:
@@ -7,7 +7,7 @@ on:
|
||||
types: [opened, synchronize, reopened]
|
||||
|
||||
env:
|
||||
VCPKG_BINARY_SOURCES: clear;x-azblob,${{ vars.AZ_BLOB_VCPKG_URL }},${{ secrets.AZ_BLOB_SAS }},readwrite
|
||||
VCPKG_BINARY_SOURCES: ${{ vars.AZ_BLOB_VCPKG_URL != '' && format('clear;x-azblob,{0},{1},readwrite', vars.AZ_BLOB_VCPKG_URL, secrets.AZ_BLOB_SAS) || '' }}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
@@ -272,7 +272,7 @@ OMODFrameworkWrapper::EInstallResult OMODFrameworkWrapper::install(MOBase::Guess
|
||||
// force-enabled by engine
|
||||
auto bsas = dataArchives->vanillaArchives();
|
||||
// explicitly enabled in INI. For Oblivion, excludes the vanilla BSAs by default.
|
||||
bsas.append(dataArchives->archives(mMoInfo->profile()));
|
||||
bsas.append(dataArchives->archives(mMoInfo->profile().get()));
|
||||
for (const auto& bsa : bsas)
|
||||
{
|
||||
QString path = mMoInfo->resolvePath(bsa);
|
||||
|
||||
Reference in New Issue
Block a user