3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-11-22 03:49:29 +01:00

applets/pbot-vm: add -vm option to help output

This commit is contained in:
Pragmatic Software 2022-12-25 18:12:32 -08:00
parent e1eeaa7869
commit 77a24faf02
2 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,7 @@ use constant {
};
use lib MOD_DIR;
use lib MOD_DIR . 'Languages/';
use Guest;

View File

@ -241,7 +241,7 @@ sub main() {
if (exists $context->{usage}) {
print "$context->{usage}\n";
} else {
print "Usage: cc [-lang=<language>] [-info] [-paste] [-args \"command-line arguments\"] [compiler/language options] <code> [-stdin <stdin input>]\n";
print "Usage: cc [-lang=<language>] [-vm=<virtual machine>] [-info] [-paste] [-args \"command-line arguments\"] [compiler/language options] <code> [-stdin <stdin input>]\n";
}
exit 1;
}