mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 08:08:53 -05:00
50ee0f5be8
Based on feedback from interested parties
13 lines
404 B
Tcl
13 lines
404 B
Tcl
# SPDX-FileCopyrightText: 2024 Redict Contributors
|
|
# SPDX-FileCopyrightText: 2024 Salvatore Sanfilippo <antirez at gmail dot com>
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
start_server {} {
|
|
set i [r info]
|
|
regexp {redict_version:(.*?)\r\n} $i - version
|
|
regexp {redict_git_sha1:(.*?)\r\n} $i - sha1
|
|
puts "Testing Redict version $version ($sha1)"
|
|
}
|