From 3937233e1ea865052be73f9eeac5aa815ae82c79 Mon Sep 17 00:00:00 2001 From: albertony <12441419+albertony@users.noreply.github.com> Date: Fri, 16 Sep 2022 16:20:19 +0200 Subject: [PATCH] fspath: refactor away unnecessary constant for remote name regex --- fs/fspath/path.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fs/fspath/path.go b/fs/fspath/path.go index 810189a07..26575f725 100644 --- a/fs/fspath/path.go +++ b/fs/fspath/path.go @@ -14,7 +14,6 @@ import ( const ( configNameRe = `[\w. -]+` - remoteNameRe = `:?` + configNameRe ) var ( @@ -35,7 +34,7 @@ var ( configNameMatcher = regexp.MustCompile(`^` + configNameRe + `$`) // remoteNameMatcher is a pattern to match an rclone remote name at the start of a config - remoteNameMatcher = regexp.MustCompile(`^` + remoteNameRe + `(?::$|,)`) + remoteNameMatcher = regexp.MustCompile(`^:?` + configNameRe + `(?::$|,)`) ) // CheckConfigName returns an error if configName is invalid