This commit is contained in:
Paul Schneider 2023-03-18 12:50:31 +00:00
commit 34d0c3c4fe
16 changed files with 241 additions and 37 deletions

View file

@ -71,12 +71,12 @@ sudo ln -s /usr/local/lib/isn/isn /usr/local/bin/isn
set -e
# compiler tout
dotnet build -c Release
dotnet publish -c Release -f net6.0 src/isnd
dotnet publish -c Release -f net7.0 src/isnd
# MAJ du serveur
sudo systemctl stop isnd
sudo cp -a src/isnd/bin/Release/net6.0/publish/* /srv/www/isnd
sudo cp -a src/isnd/bin/Release/net7.0/publish/* /srv/www/isnd
sudo systemctl start isnd
# MAJ du client
sudo cp -a src/isn/bin/Release/net6.0/* /usr/local/lib/isn
sudo cp -a src/isn/bin/Release/net7.0/* /usr/local/lib/isn
sudo chown -R root.root /usr/local/lib/isn
````