Skip to content

Commit

Permalink
Fix ProcessArgumentsProc entries
Browse files Browse the repository at this point in the history
  • Loading branch information
sneekyfoxx committed Jan 7, 2024
1 parent b37d4f6 commit 048e51b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ProcessArgumentsProc.nim
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ proc ProcessArguments*(arguments: seq[string]) {.noReturn.} =
else:
EchoProc.Echo(text = splitted[1])

elif arguments[0].startsWith("entries:"):
elif arguments[0] == "entries"or arguments[0].startsWith("entries:"):
let colons: int = arguments[0].count(":")

if colons == 0:
Expand Down

0 comments on commit 048e51b

Please sign in to comment.