commit f4a67a3cb9d2a2009c0ddd7217ae9f9819d2bc49 parent e365a384f402b5d569fde4bd394031edbd929b8a Author: cfillion <cfillion@users.noreply.github.com> Date: Sat, 26 Dec 2015 19:00:16 -0500 allow more characters in the remote names Diffstat:
M | src/reapack.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/reapack.cpp b/src/reapack.cpp @@ -128,7 +128,7 @@ void ReaPack::importRemote() file.close(); - static const regex namePattern("^[\\w\\s]+$"); + static const regex namePattern("^[^~#%&*{}\\\\:<>?/+|\"]+$"); smatch nameMatch; regex_match(name, nameMatch, namePattern);