-
Notifications
You must be signed in to change notification settings - Fork 441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wip/remove symbolic operators #931
Conversation
@@ -55,8 +55,8 @@ object BashStartScriptPlugin extends AutoPlugin { | |||
bashScriptDefines ++= bashScriptExtraDefines.value, | |||
bashScriptReplacements := generateScriptReplacements(bashScriptDefines.value), | |||
// Create a bashConfigLocation if options are set in build.sbt | |||
bashScriptConfigLocation <<= bashScriptConfigLocation ?? Some(appIniLocation), | |||
bashScriptEnvConfigLocation <<= bashScriptEnvConfigLocation ?? None, | |||
bashScriptConfigLocation := (bashScriptConfigLocation ?? Some(appIniLocation)).value, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't replace the ??
by simply using
bashScriptConfigLocation := Some(appIniLocation)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the warning on that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I haven't seen any and haven't found anything in the migration guide.
However I haven't seen this operator anywhere else yet, so I was a bit curious :)
I only glanced at the changes, but they look ok. The tricky bits that the compiler might not catch is input tasks with |
Thanks @eed3si9n for the fast reaction. |
No description provided.