chore: fix wrong file name of package.json in release script

This commit is contained in:
Elias Schneider
2024-10-23 11:54:35 +02:00
parent 29d632c151
commit 6560fd9279

View File

@@ -34,7 +34,7 @@ echo $NEW_VERSION >.version
git add .version
# Update version in frontend/package.json
jq --arg new_version "$NEW_VERSION" '.version = $new_version' frontend/package.json >frontend/package.json && mv frontend/package_tmp.json frontend/package.json
jq --arg new_version "$NEW_VERSION" '.version = $new_version' frontend/package.json >frontend/package_tmp.json && mv frontend/package_tmp.json frontend/package.json
git add frontend/package.json
# Check if conventional-changelog is installed, if not install it