diff --git a/pkg/utils/utils.go b/pkg/utils/utils.go index 928c28c6..93876586 100644 --- a/pkg/utils/utils.go +++ b/pkg/utils/utils.go @@ -467,7 +467,8 @@ func GetTmpDir(csolutionFile string, outputDir string) (string, error) { } tmpDir := data.Solution.OutputDirs.Tmpdir - if tmpDir == "" { + accessSequencesRegex := regexp.MustCompile(`\$.*?\$`) + if tmpDir == "" || accessSequencesRegex.MatchString(tmpDir) { tmpDir = defaultTmpDir }