diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-05-30 17:42:00 +0200 |
|---|---|---|
| committer | Jeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com> | 2024-06-04 16:40:29 +0200 |
| commit | 67fbe2da4b537e857067d41c768b7aa735232660 (patch) | |
| tree | 90484208ecdbd7da3f87ea43445f16de547dbf1a | |
| parent | 27720eccfac485d14192192e799efba191a4309c (diff) | |
Prepare release: Remove macOS workaround
Otherwise it doesn't work on Linux...
| -rwxr-xr-x | prepare_release.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/prepare_release.sh b/prepare_release.sh index 860f5b3..969cb4e 100755 --- a/prepare_release.sh +++ b/prepare_release.sh @@ -46,9 +46,9 @@ fi # Replace version number # replace in internal/version -sed -i "" -e "s/const Version = \".*\"/const Version = \"${PROJECT_VERSION}\"/" internal/version/version.go -sed -i "" -e "s/version = .*/version = ${PROJECT_VERSION}/" wrappers/python/setup.cfg -sed -i "" -e "s/__version__ = \".*\"/__version__ = \"${PROJECT_VERSION}\"/" wrappers/python/eduvpn_common/__init__.py +sed -i "s/const Version = \".*\"/const Version = \"${PROJECT_VERSION}\"/" internal/version/version.go +sed -i "s/version = .*/version = ${PROJECT_VERSION}/" wrappers/python/setup.cfg +sed -i "s/__version__ = \".*\"/__version__ = \"${PROJECT_VERSION}\"/" wrappers/python/eduvpn_common/__init__.py git add -u git commit -m "Version: Update to ${PROJECT_VERSION}" |
