diff --git a/deploy.sh b/deploy.sh index dcf3252..23c77cb 100644 --- a/deploy.sh +++ b/deploy.sh @@ -1,5 +1,7 @@ #!/bin/bash +start=$SECONDS + input=".env" while IFS= read -r line do @@ -97,3 +99,7 @@ elif [ "$1" = --help ]; then else echo "Nothing" fi + +duration=$(( SECONDS - start )) + +echo "Déploiement terminé en $duration s"