aboutsummaryrefslogtreecommitdiff
path: root/src/Conf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Conf.cpp')
-rw-r--r--src/Conf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Conf.cpp b/src/Conf.cpp
index e3c894a..eb66b6d 100644
--- a/src/Conf.cpp
+++ b/src/Conf.cpp
@@ -637,7 +637,7 @@ namespace sibs
for(int i = 0; i < projectName.size(); ++i)
{
char c = projectName[i];
- if(!isalpha(c) && !isdigit(c) && c != '-' && c != '_')
+ if(!isalpha(c) && !isdigit(c) && c != '-' && c != '_' && c != '.')
return false;
}