-
Notifications
You must be signed in to change notification settings - Fork 1
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
fix: Save dotfile in dumb background task #169
Conversation
# Conflicts: # src/main/kotlin/com/vaadin/plugin/copilot/CopilotPluginUtil.kt
@@ -38,7 +40,7 @@ class CopilotPluginUtil { | |||
val outputPath: String? | |||
) | |||
|
|||
@JvmRecord data class ProjectInfo(val basePath: String?, val modules: List<CopilotPluginUtil.ModuleInfo>) | |||
@JvmRecord data class ProjectInfo(val basePath: String?, val modules: List<ModuleInfo>) |
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.
sonar: Redundant qualifier
} | ||
} | ||
saveDotFile(project) | ||
removeDotFileOnExit(project) |
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.
wrappers are not needed as both actions are using those wrappers inside
Artifact build on last commit: distributions.zip. |
Save
.copilot-plugin
file as dumb background queued task. Fixes issue when file is tried to be saved during indexing.Fixes: #161