yuqi1129 commented on code in PR #7069: URL: https://github.com/apache/gravitino/pull/7069#discussion_r2059459514
########## dev/release/release-tag.sh: ########## @@ -92,9 +101,14 @@ echo "Creating tag $RELEASE_TAG at the head of $GIT_BRANCH" git tag $RELEASE_TAG # Create next version -sed -i".tmp4" 's/version = .*$/version = '"$NEXT_VERSION"'/g' gradle.properties -sed -i".tmp5" 's/ version=.*$/ version="'"$PYGRAVITINO_NEXT_VERSION"'",/g' clients/client-python/setup.py -sed -i".tmp6" 's/^version = .*$/version = \"'"$NEXT_VERSION"'\"/g' clients/filesystem-fuse/Cargo.toml +sed -i".tmp6" 's/version = .*$/version = '"$NEXT_VERSION"'/g' gradle.properties Review Comment: One EC2 instance ``` ubuntu@ip-10-0-4-157:~$ sed -i"s/hello/nice/g" 1.txt sed: -e expression #1, char 2: unknown command: `.' ubuntu@ip-10-0-4-157:~$ sed -i "s/hello/nice/g" 1.txt ubuntu@ip-10-0-4-157:~$ uname -a Linux ip-10-0-4-157 6.8.0-1024-aws #26~22.04.1-Ubuntu SMP Wed Feb 19 06:54:57 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux ``` On my local VM ``` yuqi@ubuntu-intel:/tmp$ sed -i"s/good/hello/g" 1.txt sed: -e expression #1, char 2: unknown command: `.' yuqi@ubuntu-intel:/tmp$ sed -i "s/good/hello/g" 1.txt yuqi@ubuntu-intel:/tmp$ uname -r 6.12.15-orbstack-00304-gd0ddcf70447d ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
