diff options
Diffstat (limited to 'src/dotnet/install.sh')
-rw-r--r-- | src/dotnet/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotnet/install.sh b/src/dotnet/install.sh index 68ce41c..f9bf46c 100644 --- a/src/dotnet/install.sh +++ b/src/dotnet/install.sh @@ -47,7 +47,7 @@ install_version() { # Make sure the version is formatted correctly (form 'N' is handled before this) if ! [[ "$version" = 'latest' || "$version" =~ ^[0-9]+.[0-9]+.[0-9]+$ ]]; then - echo "version must be 'latest' or use the form 'N.M.O'" + echo "Invalid version '$version': version must be 'latest' or use the form 'N.M.O'" return 1 fi |