Skip to content

Commit

Permalink
TARGET_NODE_NAMES was getting build incorrectly
Browse files Browse the repository at this point in the history
  • Loading branch information
jakajancar committed Nov 22, 2012
1 parent ed49e9e commit 6fe8341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell_load_package/ExternalSource.cpp
Expand Up @@ -63,10 +63,10 @@ class ExternalSourceFactory : public SourceFactory {
std::ostringstream targetNodeNamesStream;
targetNodeNamesStream << "TARGET_NODE_NAMES=";
for (int i = 0; i < targetNodes.size(); i++) {
targetNodeNamesStream << targetNodes[i];
if (i > 0) {
targetNodeNamesStream << ",";
}
targetNodeNamesStream << targetNodes[i];
}
env.push_back(targetNodeNamesStream.str());

Expand Down

0 comments on commit 6fe8341

Please sign in to comment.