mirror of
https://github.com/urbit/shrub.git
synced 2025-01-03 18:16:30 +03:00
fix -t error message
This commit is contained in:
parent
3b1b0181ce
commit
eb69bf45d2
@ -180,7 +180,7 @@ _main_getopt(c3_i argc, c3_c** argv)
|
||||
|
||||
if ( u3_Host.ops_u.arv_c != 0 && ( u3_Host.ops_u.imp_c == 0 ||
|
||||
u3_Host.ops_u.nuu == c3n ) ) {
|
||||
fprintf(stderr, "-A only makes sense when creating a new galaxy");
|
||||
fprintf(stderr, "-A only makes sense when creating a new galaxy\n");
|
||||
return c3n;
|
||||
}
|
||||
|
||||
@ -194,13 +194,13 @@ _main_getopt(c3_i argc, c3_c** argv)
|
||||
|
||||
if ( u3_Host.ops_u.gen_c != 0 && ( u3_Host.ops_u.imp_c == 0 ||
|
||||
u3_Host.ops_u.nuu == c3n ) ) {
|
||||
fprintf(stderr, "-G only makes sense when creating a new galaxy");
|
||||
fprintf(stderr, "-G only makes sense when creating a new galaxy\n");
|
||||
return c3n;
|
||||
}
|
||||
|
||||
if ( u3_Host.ops_u.tic_c != 0 && ( u3_Host.ops_u.imp_c != 0 ||
|
||||
u3_Host.ops_u.nuu == c3y ) ) {
|
||||
fprintf(stderr, "-t only makes sense when creating a new non-galaxy");
|
||||
u3_Host.ops_u.nuu == c3n ) ) {
|
||||
fprintf(stderr, "-t only makes sense when creating a new non-galaxy\n");
|
||||
return c3n;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user