]> Untitled Git - lemmy.git/commitdiff
Adding git add to deploy.
authorDessalines <tyhou13@gmx.com>
Sat, 29 Feb 2020 20:49:09 +0000 (15:49 -0500)
committerDessalines <tyhou13@gmx.com>
Sat, 29 Feb 2020 20:49:09 +0000 (15:49 -0500)
docker/dev/deploy.sh

index 30500b5a0b7f3cf1e8f899a6257bed2f36e91b49..94a2fa91e74618af04dd0d570df591cd4f083c9e 100755 (executable)
@@ -3,7 +3,8 @@ git checkout master
 
 # Import translations
 wget "https://weblate.yerbamate.dev/download/lemmy/lemmy/?format=zip" -O /tmp/lemmy_l10n.zip
-unzip -j -o /tmp/lemmy_l10n.zip -d ui/translations/
+unzip -j -o /tmp/lemmy_l10n.zip -d ../../ui/translations/
+git add ../../ui/translations
 rm /tmp/lemmy_l10n.zip
 
 # Creating the new tag
@@ -18,7 +19,7 @@ git add "ui/src/version.ts"
 echo "pub const VERSION: &str = \"$new_tag\";" > "server/src/version.rs"
 git add "server/src/version.rs"
 # Setting the version for Ansible
-$new_tag > "ansible/VERSION"
+echo $new_tag > "ansible/VERSION"
 git add "ansible/VERSION"
 
 cd docker/dev || exit