From 04f7cf535992f05ea56c701f25a6adad564796ae Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 16 Feb 2020 00:18:50 +0100 Subject: Allow dot in project name --- src/Conf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Conf.cpp') 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; } -- cgit v1.2.3