mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-13 16:25:00 +00:00
deploy: 41cdb8ba267c286ec93d5fa8d0c7f2201492592c
This commit is contained in:
parent
3155964cfe
commit
9bb5c0a4cf
@ -2,7 +2,7 @@
|
||||
|
||||
# libtool - Provide generalized library-building support services.
|
||||
# Generated automatically by config.status (libbacktrace) version-unused
|
||||
# Libtool was configured on host fv-az318-25:
|
||||
# Libtool was configured on host fv-az38-315:
|
||||
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
|
||||
#
|
||||
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
|
||||
|
@ -27,6 +27,11 @@ type
|
||||
desc: "Sets the log level."
|
||||
defaultValue: LogLevel.INFO
|
||||
name: "log-level" }: LogLevel
|
||||
|
||||
version* {.
|
||||
desc: "prints the version"
|
||||
defaultValue: false
|
||||
name: "version" }: bool
|
||||
|
||||
nodekey* {.
|
||||
desc: "P2P node private key as 64 char hex string.",
|
||||
|
@ -1306,6 +1306,12 @@ when isMainModule:
|
||||
quit 1 # if we don't leave here, the initialization of conf does not work in the success case
|
||||
{.pop.}
|
||||
|
||||
# if called with --version, print the version and quit
|
||||
if conf.version:
|
||||
const git_version {.strdefine.} = "n/a"
|
||||
echo "version / git commit hash: ", git_version
|
||||
quit(QuitSuccess)
|
||||
|
||||
var
|
||||
node: WakuNode # This is the node we're going to setup using the conf
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user