]> Untitled Git - lemmy.git/blobdiff - docker/prod/deploy.sh
Fixing release doc.
[lemmy.git] / docker / prod / deploy.sh
index 7520f1495abd6cce7dd69b324bb4d7eb74693647..fd78b71a0d0ff9cf64025b18124d0340852829e7 100755 (executable)
@@ -1,17 +1,10 @@
 #!/bin/sh
-set -e
 #git checkout main
 
 # Creating the new tag
 new_tag="$1"
 third_semver=$(echo $new_tag | cut -d "." -f 3)
 
-# Setting the version on the backend
-pushd ../../
-echo "pub const VERSION: &str = \"$new_tag\";" > "crates/utils/src/version.rs"
-git add "crates/utils/src/version.rs"
-popd
-
 # The ansible and docker installs should only update for non release-candidates
 # IE, when the third semver is a number, not '2-rc'
 if [ ! -z "${third_semver##*[!0-9]*}" ]; then