Skip to content

Commit b65a693

Browse files
committed
fix: error basePath
1 parent da5ff9c commit b65a693

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginGroup = com.huayi.intellijplatform.gitstats
44
pluginName = GitStats
55
pluginRepositoryUrl = https://github.com/zhensherlock/intellij-platform-git-stats-plugin
66
# SemVer format -> https://semver.org
7-
pluginVersion = 0.6.0
7+
pluginVersion = 0.6.1
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 221

src/main/kotlin/com/huayi/intellijplatform/gitstats/utils/GitUtils.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ data class CommitFilesStats(
3030

3131
class GitUtils(project: Project) {
3232
private val gitExecutablePath: String = GitExecutableManager.getInstance().getExecutable(project).exePath
33-
// private val basePath: String = project.basePath as String
34-
private val basePath: String = "/Users/sunzhenxuan/work/qcc/code/qcc_pro/pro-front"
33+
private val basePath: String = project.basePath as String
34+
// private val basePath: String = "/Users/sunzhenxuan/work/qcc/code/qcc_pro/pro-front"
3535
private val gitBashExecutablePath: String? = GitExecutableDetector.getBashExecutablePath(gitExecutablePath)
3636

3737
// init {

0 commit comments

Comments
 (0)