rename drive letter regex to make room for expansion
This commit is contained in:
parent
a6554161b8
commit
54a1d35556
@ -18,9 +18,9 @@ using namespace cellar;
|
|||||||
string cellar::paths::translate(std::string in_path, bool lazy) {
|
string cellar::paths::translate(std::string in_path, bool lazy) {
|
||||||
bool windows_input;
|
bool windows_input;
|
||||||
|
|
||||||
static regex drive_letter(R"([a-zA-Z]:\\)");
|
static regex drive_letter_rgx(R"([a-zA-Z]:\\)");
|
||||||
|
|
||||||
windows_input = regex_match(in_path.substr(0, 3), drive_letter);
|
windows_input = regex_match(in_path.substr(0, 3), drive_letter_rgx);
|
||||||
|
|
||||||
if (!lazy) {
|
if (!lazy) {
|
||||||
output::warning("non-lazy path translation is not implemented yet");
|
output::warning("non-lazy path translation is not implemented yet");
|
||||||
|
Loading…
Reference in New Issue
Block a user