Fix <cfgFile> option handling.

This commit is contained in:
Jonathan Bernard 2017-10-02 12:12:33 -05:00
parent efe856c0fe
commit f3d4421af2
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ type
DPConfig = tuple[planDir, dateFmt, pidfile, logfile, errfile: string,
notificationSecs: int]
const VERSION = "0.3.1"
const VERSION = "0.3.2"
const NOTE_TITLE = "Daily Notifier v" & VERSION
const timeFmt = "HH:mm"
@ -77,7 +77,7 @@ proc loadConfig(s: cint): void {. exportc, noconv .} =
# Find and parse the .dailynotificationrc file
let rcLocations = @[
if args["--config"]: $args["<cfgFile>"] else:"",
if args["--config"]: $args["--config"] else:"",
".dailynotificationrc", $getEnv("DAILY_NOTIFICATION_RC"),
$getEnv("HOME") & "/.dailynotificationrc"]

View File

@ -1,6 +1,6 @@
# Package
version = "0.3.1"
version = "0.3.2"
author = "Jonathan Bernard"
description = "Little programs that reads my daily plan and notifies me of upcoming events."
license = "MIT"