bcachefs-tools/cmd_version.c
Kent Overstreet 47bb2d53ce Version is now specified in the makefile
git describe doesn't work for tarball releases

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2023-11-16 15:24:22 -05:00

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;
}