Skip to content

Commit

Permalink
disk: fix broken chop error message (#642)
Browse files Browse the repository at this point in the history
#635 broke the develop branch and therefore broke CI on `urbit/urbit`.
It's a real C moment that CI failed to catch this one.
  • Loading branch information
pkova authored May 1, 2024
2 parents ab89195 + 175c2d1 commit 639d032
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pkg/vere/disk.c
Original file line number Diff line number Diff line change
Expand Up @@ -1632,9 +1632,7 @@ u3_disk_chop(u3_disk* log_u, c3_d eve_d)
u3_disk_epoc_list(log_u, sot_d);

if ( len_z <= 2 ) {
fprintf(stderr, "chop: nothing to do, try running roll first\r\n"
"chop: for more info see "
"https://docs.urbit.org/manual/running/vere#chop\r\n");
fprintf(stderr, "chop: nothing to do, try running roll first\r\nchop: for more info see https://docs.urbit.org/manual/running/vere#chop\r\n");
exit(0); // enjoy
}

Expand Down

0 comments on commit 639d032

Please sign in to comment.