Skip to content

Commit 36f459b

Browse files
authored
Merge pull request #6722 from BOINC/dpa_vbox_dir
client: don't complain about projects/virtualbox; we created it
2 parents a5c2581 + 72606e7 commit 36f459b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

client/cs_files.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ int CLIENT_STATE::make_project_dirs() {
105105
DirScanner dir(PROJECTS_DIR);
106106
while (dir.scan(name)) {
107107
if (name == "app_test") continue;
108+
if (!strcasecmp(name.c_str(), "virtualbox")) continue;
108109
snprintf(path, sizeof(path), "projects/%s", name.c_str());
109110
if (std::find(pds.begin(), pds.end(), path) != pds.end()) {
110111
continue;

0 commit comments

Comments
 (0)