Skip to content

Commit

Permalink
Removed -i from sed
Browse files Browse the repository at this point in the history
  • Loading branch information
stanbrub committed Oct 11, 2024
1 parent c8f2232 commit 39e464a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/make-release-distro.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ WORKING_DIR=$(pwd)
# Generate dependencies directory
mkdir -p ${DISTRO_DEST}/libs/
cd ${DISTRO_DEST}
cat ${DISTRO_SOURCE}/dependency-pom.xml | sed -i "s!<version>1.0-SNAPSHOT</version>!<version>${RELEASE_VERSION}</version>!g" > dependency-pom.xml
cat ${DISTRO_SOURCE}/dependency-pom.xml | sed "s!<version>1.0-SNAPSHOT</version>!<version>${RELEASE_VERSION}</version>!g" > dependency-pom.xml
mvn -B install --file dependency-pom.xml
mv target/dependencies/* libs/
rm -rf target
Expand Down

0 comments on commit 39e464a

Please sign in to comment.