mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
now redis-cli is able to show the Git SHA1 in the version output
This commit is contained in:
parent
d9d8ccab93
commit
11fd0c422b
@ -26,7 +26,7 @@ INSTALL= cp -p
|
||||
|
||||
OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o vm.o pubsub.o multi.o debug.o sort.o intset.o syncio.o
|
||||
BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
|
||||
CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o
|
||||
CLIOBJ = anet.o sds.o adlist.o redis-cli.o zmalloc.o release.o
|
||||
CHECKDUMPOBJ = redis-check-dump.o lzf_c.o lzf_d.o
|
||||
CHECKAOFOBJ = redis-check-aof.o
|
||||
|
||||
|
@ -67,6 +67,7 @@ static struct config {
|
||||
} config;
|
||||
|
||||
static void usage();
|
||||
char *redisGitSHA1(void);
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
* Utility functions
|
||||
@ -351,7 +352,7 @@ static int parseOptions(int argc, char **argv) {
|
||||
"automatically used as last argument.\n"
|
||||
);
|
||||
} else if (!strcmp(argv[i],"-v")) {
|
||||
printf("redis-cli shipped with Redis version %s\n", REDIS_VERSION);
|
||||
printf("redis-cli shipped with Redis version %s (%s)\n", REDIS_VERSION, redisGitSHA1());
|
||||
exit(0);
|
||||
} else {
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user