Skip to content

Commit

Permalink
chore: release to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Dec 12, 2024
1 parent b260b49 commit 9800101
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pluginGroup = com.phodal.shire
pluginName = Shire - AI Coding Agent Language
pluginRepositoryUrl = https://github.com/phodal/shire
# SemVer format -> https://semver.org
pluginVersion = 1.2.0-SNAPSHOT
pluginVersion = 1.2.0

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType = IU
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ object ShireShellCommandRunner {
* for example,the file also needs to be deleted when [create-process][OSProcessHandler.startProcess] fails.
*/
private fun deleteFileOnTermination(commandLine: GeneralCommandLine, tempFile: File) {
// OSProcessHandler.deleteFileOnTermination(commandLine, tempFile) // is Internal API
try {
FileUtil.delete(tempFile)
} catch (e: Exception) {
// ignore
}
OSProcessHandler.deleteFileOnTermination(commandLine, tempFile) // is Internal API
// try {
// FileUtil.delete(tempFile)
// } catch (e: Exception) {
// // ignore
// }
}
}

0 comments on commit 9800101

Please sign in to comment.