You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [[ "$old_version"!="$other_old_version" ]];then
@@ -20,12 +28,12 @@ echo "old : $old_version"
20
28
echo"new : $new_version"
21
29
read -r -p "Run update? [y/N]: " yn
22
30
go=${yn:-"n"}
23
-
if [ "${go,,}"!="y" ];then
31
+
if [ "$go"!="y" ] && [ "$go"!="Y" ];then
24
32
echo"aborting"
25
33
exit
26
34
fi
27
35
28
36
# update to latest dev version (change update_versions.sh if you change this section)
29
-
sed -i"s/\(sigstoreJavaVersion.convention(\"\)$old_version/\1$new_version/" sigstore-gradle/sigstore-gradle-sign-base-plugin/src/main/kotlin/dev/sigstore/sign/SigstoreSignExtension.kt
30
-
sed -i"s/version=$old_version/version=$new_version/" gradle.properties
# update to latest dev version (change change_version.sh if you change this section)
41
-
sed -i"s/\(sigstoreJavaVersion.convention(\"\)$release_version/\1$next_version/" sigstore-gradle/sigstore-gradle-sign-base-plugin/src/main/kotlin/dev/sigstore/sign/SigstoreSignExtension.kt
42
-
sed -i"s/version=$release_version/version=$next_version/" gradle.properties
0 commit comments