Fix <cfgFile> option handling.
This commit is contained in:
parent
efe856c0fe
commit
f3d4421af2
@ -11,7 +11,7 @@ type
|
|||||||
DPConfig = tuple[planDir, dateFmt, pidfile, logfile, errfile: string,
|
DPConfig = tuple[planDir, dateFmt, pidfile, logfile, errfile: string,
|
||||||
notificationSecs: int]
|
notificationSecs: int]
|
||||||
|
|
||||||
const VERSION = "0.3.1"
|
const VERSION = "0.3.2"
|
||||||
const NOTE_TITLE = "Daily Notifier v" & VERSION
|
const NOTE_TITLE = "Daily Notifier v" & VERSION
|
||||||
const timeFmt = "HH:mm"
|
const timeFmt = "HH:mm"
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ proc loadConfig(s: cint): void {. exportc, noconv .} =
|
|||||||
|
|
||||||
# Find and parse the .dailynotificationrc file
|
# Find and parse the .dailynotificationrc file
|
||||||
let rcLocations = @[
|
let rcLocations = @[
|
||||||
if args["--config"]: $args["<cfgFile>"] else:"",
|
if args["--config"]: $args["--config"] else:"",
|
||||||
".dailynotificationrc", $getEnv("DAILY_NOTIFICATION_RC"),
|
".dailynotificationrc", $getEnv("DAILY_NOTIFICATION_RC"),
|
||||||
$getEnv("HOME") & "/.dailynotificationrc"]
|
$getEnv("HOME") & "/.dailynotificationrc"]
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
author = "Jonathan Bernard"
|
author = "Jonathan Bernard"
|
||||||
description = "Little programs that reads my daily plan and notifies me of upcoming events."
|
description = "Little programs that reads my daily plan and notifies me of upcoming events."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user