From 98482b1564ad7378f7ac439b5e5ab7247dcefc38 Mon Sep 17 00:00:00 2001
From: Dessalines <dessalines@users.noreply.github.com>
Date: Tue, 27 Jun 2023 04:28:56 -0400
Subject: [PATCH] Fixing the release script. (#3295)

* Fixing the release script.

* Updating the submodules.
---
 scripts/release.sh | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/scripts/release.sh b/scripts/release.sh
index 4b9fdd8e..2df168c4 100755
--- a/scripts/release.sh
+++ b/scripts/release.sh
@@ -10,15 +10,15 @@ third_semver=$(echo $new_tag | cut -d "." -f 3)
 # IE, when the third semver is a number, not '2-rc'
 if [ ! -z "${third_semver##*[!0-9]*}" ]; then
   pushd ../docker
-  sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../docker-compose.yml
-  sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../docker-compose.yml
-  sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../federation/docker-compose.yml
-  git add ../docker-compose.yml
-  git add ../federation/docker-compose.yml
+  sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" docker-compose.yml
+  sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" docker-compose.yml
+  sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" federation/docker-compose.yml
+  git add docker-compose.yml
+  git add federation/docker-compose.yml
   popd
 
   # Setting the version for Ansible
-  pushd ../../../lemmy-ansible
+  pushd ../../lemmy-ansible
   echo $new_tag > "VERSION"
   git add "VERSION"
   git commit -m"Updating VERSION"
@@ -38,6 +38,10 @@ cargo check
 git add Cargo.lock
 popd
 
+# Update the submodules
+git submodule update --remote
+git add crates/utils/translations
+
 # The commit
 git commit -m"Version $new_tag"
 git tag $new_tag
-- 
2.44.1