mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-01-22 00:04:31 +03:00
47bb2d53ce
git describe doesn't work for tarball releases Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
10 lines
127 B
C
10 lines
127 B
C
#include <stdio.h>
|
|
|
|
#include "cmds.h"
|
|
|
|
int cmd_version(int argc, char *argv[])
|
|
{
|
|
printf("%s\n", VERSION_STRING);
|
|
return 0;
|
|
}
|