Skip to content
Snippets Groups Projects
Commit 120cfce0 authored by whh8b's avatar whh8b
Browse files

Plugin man should not warn about cwd and pwd not having .zpi extensions.

parent 08b1e185
No related branches found
No related tags found
No related merge requests found
......@@ -124,11 +124,16 @@ void ZiprPluginManager_t::open_plugins
while ((dirp = readdir(dp)) != NULL)
{
string name=dir+string(dirp->d_name);
string basename = string(dirp->d_name);
string name=dir+basename;
string zpi(".zpi");
string extension=name.substr(name.size() - zpi.length());
if(extension!=zpi)
// Automatically skip cwd and pwd entries.
if(basename == "." || basename == "..")
continue;
if (extension!=zpi)
{
cout<<"File ("<<name<<") does not have proper extension, skipping."<<endl;
continue; // try next file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment