From a9cfcb8c1c14917dee4c0df58ca51cca5374fee4 Mon Sep 17 00:00:00 2001 From: "guillaume.emorine" Date: Mon, 29 Apr 2024 09:48:53 +0200 Subject: [PATCH] =?UTF-8?q?=09Modifi=C3=A9=C2=A0:=20=20=20=20=20=20=20=20?= =?UTF-8?q?=20automate.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- automate.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/automate.sh b/automate.sh index 3a17c06..cea3413 100644 --- a/automate.sh +++ b/automate.sh @@ -11,7 +11,7 @@ export https_proxy="http://10.121.38.1:8080/" echo "Voulez-vous récupérer les fichiers du dépôt ou effectuer un push sur le dépôt ? [1 = Pull, 2 = Push]" read answer -echo "Quelle branche est concernée ? [1 = main, 2 = tests]" +echo "Quelle branche est concernée ? [1 = main, 2 = test]" read branch if [ $branch == 1 ] ; then if [ $answer == 1 ] ; then @@ -32,11 +32,11 @@ if [ $branch == 1 ] ; then fi else if [ $answer == 1 ] ; then - git checkout tests + git checkout test echo "Récupération des fichiers à jour dans la branche tests..." git pull origin tests else - git checkout tests + git checkout test echo "Ajout des fichiers au Gitea, branche tests..." sleep 2 git add . @@ -45,6 +45,6 @@ else git commit echo "Push des fichiers au Gitea, branche tests..." sleep 2 - git push origin tests + git push origin test fi fi \ No newline at end of file