Skip to content

Commit

Permalink
Merge pull request #115 from nils-a/hotfix/GH-112
Browse files Browse the repository at this point in the history
(GH-112) fixed error in re-hydrating settings
  • Loading branch information
nils-a authored Apr 7, 2021
2 parents 969d35b + 055598e commit 72db065
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class CakeSettings : PersistentStateComponent<CakeSettings> {
var cakeTaskParsingRegex = "Task\\s*?\\(\\s*?\"(.*?)\"\\s*?\\)"
var cakeVerbosity = "normal"
var cakeRunner = "~/.dotnet/tools/dotnet-cake"
var cakeRunnerOverrides = mapOf(Pair("^.*windows.*$", "\${USERPROFILE}\\.dotnet\\tools\\dotnet-cake.exe"))
var cakeRunnerOverrides = mutableMapOf(Pair("^.*windows.*$", "\${USERPROFILE}\\.dotnet\\tools\\dotnet-cake.exe"))
var cakeScriptSearchPaths: Collection<String> = mutableListOf(".")
var cakeScriptSearchIgnores: Collection<String> = mutableListOf(".*/tools/.*")
// do we need a settings-UI for these?
Expand Down

0 comments on commit 72db065

Please sign in to comment.