Merge pull request #406 from leh103/master

Fix for isuue #398
This commit is contained in:
Vadim Lopatin 2019-08-09 11:51:23 +03:00 committed by GitHub
commit c566de2633
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -11,6 +11,7 @@ import std.file;
import std.path;
import std.process;
import std.utf;
import std.ascii : isAlphaNum;
string[] includePath;
@ -934,19 +935,19 @@ class DubPackageFinder {
bool isValidProjectName(in string s) pure {
if (s.empty)
return false;
return reduce!q{ a && (b == '_' || b == '-' || std.ascii.isAlphaNum(b)) }(true, s);
return reduce!((a, b) => a && (b == '_' || b == '-' || isAlphaNum(b)))(true, s);
}
bool isValidModuleName(in string s) pure {
if (s.empty)
return false;
return reduce!q{ a && (b == '_' || std.ascii.isAlphaNum(b)) }(true, s);
return reduce!((a, b) => a && (b == '_' || isAlphaNum(b)))(true, s);
}
bool isValidFileName(in string s) pure {
if (s.empty)
return false;
return reduce!q{ a && (b == '_' || b == '.' || b == '-' || std.ascii.isAlphaNum(b)) }(true, s);
return reduce!((a, b) => a && (b == '_' || b == '.' || b == '-' || isAlphaNum(b)))(true, s);
}
unittest {