diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2020-11-21 18:54:17 +0100 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2020-11-21 18:54:17 +0100 |
commit | 31c9d3590337f612662cfbe542c80e96c84299a0 (patch) | |
tree | 9b1cedaf0f7f2011501ed82d19f8b34dbb722bd3 /src/lutris.c | |
parent | b5aaac8349f504f81124e71a4bcf2003cc6d7800 (diff) | |
download | polecat-31c9d3590337f612662cfbe542c80e96c84299a0.tar.gz polecat-31c9d3590337f612662cfbe542c80e96c84299a0.zip |
Update readme (once again), add message for no installer found
Diffstat (limited to 'src/lutris.c')
-rw-r--r-- | src/lutris.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lutris.c b/src/lutris.c index 61a98c7..c57c866 100644 --- a/src/lutris.c +++ b/src/lutris.c @@ -195,11 +195,15 @@ int lutris_info(int argc, char** argv) } else { - + printf("Couldn't find an installer by the name `%s'\n", argv[1]); } lutris_freeInstaller(&installer); } + else + { + puts(USAGE_STR " lutris info <installer-name>\nThe Name of an installer can be found by viewing the install script of an installer"); + } return 0; } |