diff options
author | Araq <rumpf_a@web.de> | 2021-07-21 09:09:43 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2021-07-21 09:09:58 +0200 |
commit | b6f9f7a33eb550a75350c2bce8423269734bb185 (patch) | |
tree | 9c4d60506bfe808520decb0fbf31097224adeabd | |
parent | 70fb377e88a73332974fc488b17d4b90dd6fd22a (diff) | |
download | Nim-b6f9f7a33eb550a75350c2bce8423269734bb185.tar.gz |
atlas: minor changes
-rw-r--r-- | tools/atlas/atlas.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/atlas/atlas.nim b/tools/atlas/atlas.nim index 371a1c13f..b10ec0358 100644 --- a/tools/atlas/atlas.nim +++ b/tools/atlas/atlas.nim @@ -14,7 +14,7 @@ import parse_requires, osutils, packagesjson const Version = "0.1" - Usage = "atlas - Nim Package Manager Version " & Version & """ + Usage = "atlas - Nim Package Cloner Version " & Version & """ (c) 2021 Andreas Rumpf Usage: @@ -170,7 +170,7 @@ proc toName(p: string): PackageName = else: result = PackageName p -proc needsCommitLookup(commit: string): bool {.inline} = +proc needsCommitLookup(commit: string): bool {.inline.} = '.' in commit or commit == InvalidCommit proc isShortCommitHash(commit: string): bool {.inline.} = |