Skip to content

Commit 43caaa5

Browse files
Change IOrganizer::profile return type to a shared_ptr (#15)
1 parent 934de77 commit 43caaa5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
types: [opened, synchronize, reopened]
88

99
env:
10-
VCPKG_BINARY_SOURCES: clear;x-azblob,${{ vars.AZ_BLOB_VCPKG_URL }},${{ secrets.AZ_BLOB_SAS }},readwrite
10+
VCPKG_BINARY_SOURCES: ${{ vars.AZ_BLOB_VCPKG_URL != '' && format('clear;x-azblob,{0},{1},readwrite', vars.AZ_BLOB_VCPKG_URL, secrets.AZ_BLOB_SAS) || '' }}
1111

1212
jobs:
1313
build:

src/OMODFrameworkWrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ OMODFrameworkWrapper::EInstallResult OMODFrameworkWrapper::install(MOBase::Guess
272272
// force-enabled by engine
273273
auto bsas = dataArchives->vanillaArchives();
274274
// explicitly enabled in INI. For Oblivion, excludes the vanilla BSAs by default.
275-
bsas.append(dataArchives->archives(mMoInfo->profile()));
275+
bsas.append(dataArchives->archives(mMoInfo->profile().get()));
276276
for (const auto& bsa : bsas)
277277
{
278278
QString path = mMoInfo->resolvePath(bsa);

0 commit comments

Comments
 (0)