You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ob...@apache.org on 2022/05/02 13:53:04 UTC

[incubator-streampipes] branch obermeier-patch-1 created (now 75735805c)

This is an automated email from the ASF dual-hosted git repository.

obermeier pushed a change to branch obermeier-patch-1
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git


      at 75735805c [STREAMPIPES-536] Escape asterisk in sed command

This branch includes the following new commits:

     new 75735805c [STREAMPIPES-536] Escape asterisk in sed command

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-streampipes] 01/01: [STREAMPIPES-536] Escape asterisk in sed command

Posted by ob...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

obermeier pushed a commit to branch obermeier-patch-1
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit 75735805c52018e599e806c291d4970d4919e8ee
Author: Stefan Obermeier <st...@seeburger.de>
AuthorDate: Mon May 2 15:53:00 2022 +0200

    [STREAMPIPES-536] Escape asterisk in sed command
---
 installer/upgrade_versions.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/installer/upgrade_versions.sh b/installer/upgrade_versions.sh
index 1c9814572..fef88457f 100755
--- a/installer/upgrade_versions.sh
+++ b/installer/upgrade_versions.sh
@@ -47,7 +47,7 @@ set_version(){
 
         for opt in "${options[@]}"
         do
-          sed -i 's/**Current version:** .*/**Current version:** '$NEW_VERSION'/g' ./$opt/README.md
+          sed -i 's/\*\*Current version:\*\* .*/\*\*Current version:\*\* '$NEW_VERSION'/g' ./$opt/README.md
         done
         ;;
   esac