"bex qman init", not "bex qman --init"
my ($class, $name) = @_;
$name //= 'queue';
my $path = $BEX::Config::home . '/' . $name;
- -d $path or die "Queue directory $path does not exist (use bex qman --init to create it)\n";
+ -d $path or die "Queue directory $path does not exist (use 'bex qman init' to create it)\n";
-d "$path/hosts" && -d "$path/jobs" or die "Queue directory $path is misconfigured\n";
my $queue = {
'Name' => $name,