The previous logic that was intended to find the first non-empty filename that represented a valid file location was wrong. Replaced with a simpler filter-based version. Additionally, if the user provides a specific configuration filename, we no longer fall back to the defaults if it is not found. Instead we just err out and inform them that the file the specified was not found.
26 lines
675 B
Nim
26 lines
675 B
Nim
# Package
|
|
|
|
version = "1.0.14"
|
|
author = "Jonathan Bernard"
|
|
description = "Personal Time Keeper"
|
|
license = "MIT"
|
|
bin = @["ptk"]
|
|
|
|
# Dependencies
|
|
|
|
requires @[
|
|
"nim >= 1.0.0",
|
|
"docopt >= 0.6.8",
|
|
"uuids",
|
|
"tempfile",
|
|
"isaac >= 0.1.3",
|
|
"bcrypt",
|
|
"jester 0.5.0",
|
|
"https://git.jdb-software.com/jdb/nim-lang-utils.git",
|
|
"https://git.jdb-software.com/jdb/nim-cli-utils.git >= 0.6.5",
|
|
"https://git.jdb-software.com/jdb/nim-time-utils.git >= 0.5.2",
|
|
"https://git.jdb-software.com/jdb/update-nim-package-version"
|
|
]
|
|
|
|
task updateVersion, "Update the version of this package.":
|
|
exec "update_nim_package_version ptk 'private/version.nim'" |