Skip to content

Commit

Permalink
[fix] bundle : do not bundle for static dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Leduc committed Mar 11, 2024
1 parent d44c4fe commit e79568e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/managers/BundleManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ void BundleManager::bundleDependency(const Dependency & dependency, DependencyFi
if (!outputDirectory.empty() && dependency.getType() == Dependency::Type::REMAKEN && m_options.recurse()) {
this->bundleDependencies(outputDirectory / Constants::EXTRA_DEPS, DependencyFileType::EXTRA_DEPS);
if (type != DependencyFileType::EXTRA_DEPS) {
this->bundleDependencies(outputDirectory / typeToNameMap.at(type), type);
if (dependency.getMode() != "static") {
this->bundleDependencies(outputDirectory / typeToNameMap.at(type), type);
}
}
}
}
Expand Down

0 comments on commit e79568e

Please sign in to comment.