fix: added VIETER_ prefix to vconf.load calls

This commit is contained in:
Jef Roosens 2022-06-15 22:54:27 +02:00
parent 233dd20345
commit 339267e6b2
Signed by untrusted user: Jef Roosens
GPG key ID: B75D4F293C7052DB
4 changed files with 11 additions and 11 deletions

View file

@ -24,7 +24,7 @@ pub fn cmd() cli.Command {
description: 'Start the cron service that periodically runs builds.'
execute: fn (cmd cli.Command) ? {
config_file := cmd.flags.get_string('config-file')?
conf := vconf.load<Config>(default_path: config_file)?
conf := vconf.load<Config>(prefix: 'VIETER_', default_path: config_file)?
cron(conf)?
}