File tree 3 files changed +6
-3
lines changed
build-logic/structure/src/main/kotlin
metadata/en-US/changelogs
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ object DefaultConfig {
4
4
const val appId = " com.looker.droidify"
5
5
const val compileSdk = 34
6
6
const val minSdk = 23
7
- const val versionCode = 593
8
- const val versionName = " 0.5.9 Patch 3 "
7
+ const val versionCode = 594
8
+ const val versionName = " 0.5.9 Patch 4 "
9
9
}
Original file line number Diff line number Diff line change
1
+ Fixes:
2
+ - Duplicate Repositories
Original file line number Diff line number Diff line change @@ -72,7 +72,8 @@ code $changelog_file
72
72
# Ask for confirmation before creating a Git tag
73
73
read -p " Do you want to create a Git tag for version $git_tag ? (y/n): " -r
74
74
if [[ $REPLY =~ ^[Yy]$ ]]; then
75
- git commit -A -m " Release $version_name "
75
+ git add -A
76
+ git commit -m " Release $version_name "
76
77
# Create a Git tag
77
78
git tag " $git_tag "
78
79
echo " Git tag '$git_tag ' created."
You can’t perform that action at this time.
0 commit comments