Skip to content

Commit

Permalink
Allow symlinks to services and filters binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
loentar committed Dec 6, 2016
1 parent c398007 commit a09758a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/engine/src/Deployment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void Deployment::deployAll(const std::string& servicesPath)
{
// find service libraries
StringList libs;
File(servicesPath).list(libs, "*" NGREST_LIBRARY_EXT, File::AttributeRegularFile);
File(servicesPath).list(libs, "*" NGREST_LIBRARY_EXT, File::AttributeAnyFile);

if (libs.empty()) {
LogError() << "No services found";
Expand Down
2 changes: 1 addition & 1 deletion core/engine/src/FilterDeployment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void FilterDeployment::deployAll(const std::string& filtersPath)
{
// find filter libraries
StringList libs;
File(filtersPath).list(libs, "*" NGREST_LIBRARY_EXT, File::AttributeRegularFile);
File(filtersPath).list(libs, "*" NGREST_LIBRARY_EXT, File::AttributeAnyFile);

if (libs.empty()) {
LogDebug() << "No filters found";
Expand Down

0 comments on commit a09758a

Please sign in to comment.