From 435fc8a2d5c1ae48e0d52b326d189a469d743070 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20St=C3=A9benne?= Date: Wed, 5 May 2021 09:36:16 -0400 Subject: [PATCH] Rephrase "No argument" message. The "No argument" message looks a lot like an error message. I rephrased it so we know better what is going on and not worry about having entered bad arguments. --- init.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.sh b/init.sh index e305313..a808071 100755 --- a/init.sh +++ b/init.sh @@ -61,7 +61,7 @@ render () { # Check if any arguments were passed or if the passed argument is empty if [ $# -eq 0 -o -z "$1" ]; then - echo "No arguments supplied. Expecting a volume mounted with the repository." + echo "No argument for GitHub supplied. Using the mounted volume as the repository." # Start the rendering process render @@ -73,4 +73,4 @@ else render mv /results/gource.mp4 "/results/$github_user-$github_repository.mp4" -fi \ No newline at end of file +fi