From 4ff6a4fa3790e0ccb728f737059599b5af1c5149 Mon Sep 17 00:00:00 2001 From: Ackimixs Date: Thu, 23 May 2024 18:03:54 +0200 Subject: [PATCH] Update update_all_repo.sh --- update_all_repo.sh | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/update_all_repo.sh b/update_all_repo.sh index 83ccc40..1bb0f24 100644 --- a/update_all_repo.sh +++ b/update_all_repo.sh @@ -1,14 +1,16 @@ #!/bin/bash -# Update of the TCP server -echo "Updating the TCP server" -cd /home/modelec/Serge/TCPSocketServer && git pull && cd build && cmake .. && make -echo "TCP server updated" +# Update Server TCP +echo "Upadting TCP Server" +cd /home/modelec/Serge/TCPSocketServer/build && git pull && cmake .. && make +cd /home/modelec/Serge/TCPSocketServerGC/build && git pull && cmake .. && make +echo "Server updated" # Update of the TCP Client echo "Updating the TCP client" cd /home/modelec/Serge/cpp-lib && git pull && cd build && cmake .. && sudo make && sudo make install -echo "TCP client updated" +cd /home/modelec/Serge/cpp-lib/example/build && cmake .. && make +echo "Lib updated" # Update of the connectors echo "Updating the connectors" @@ -46,4 +48,4 @@ cd /home/modelec/Serge/tirette && git pull && g++ main.cpp MyClient.cpp MyClient echo "Tirette updated" echo "All repositories have been updated, Please check the logs for any errors" -echo "Please update Initialisation manually using git pull" \ No newline at end of file +echo "Please update Initialisation manually using git pull"