diff options
author | milancurcic <caomaco@gmail.com> | 2020-07-24 12:53:16 -0400 |
---|---|---|
committer | milancurcic <caomaco@gmail.com> | 2020-07-24 12:53:16 -0400 |
commit | 53b06aadcdf5b527d2df02e2a532c6257acceb22 (patch) | |
tree | 4fff064c59581f3deafb52b5b86f58cb47eb03af | |
parent | be4d958403d8a379b8360f5f5a7d3f9e34e1aaec (diff) | |
download | fpm-53b06aadcdf5b527d2df02e2a532c6257acceb22.tar.gz fpm-53b06aadcdf5b527d2df02e2a532c6257acceb22.zip |
drop uppercase USAGE and more descriptive tagline
-rw-r--r-- | fpm/src/fpm.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpm/src/fpm.f90 b/fpm/src/fpm.f90 index fe3079b..d04a62a 100644 --- a/fpm/src/fpm.f90 +++ b/fpm/src/fpm.f90 @@ -105,7 +105,7 @@ close(u) end subroutine subroutine print_help() -print *, "Fortran Package Manager (fpm)" +print *, "fpm - A Fortran package manager and build system" select case (get_os_type()) case (OS_LINUX) print *, "OS Type: Linux" @@ -115,7 +115,7 @@ select case (get_os_type()) print *, "OS Type: Windows" end select print * -print *, "USAGE:" +print *, "Usage:" print *, " fpm [COMMAND]" print * print *, "Valid fpm commands are:" |