From 8e143a097d9711051f8312426ee01254bb2db50a Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 22 Feb 2017 18:17:18 +0100 Subject: [PATCH] Change name of file where publish token is saved. --- src/nimblepkg/publish.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nimblepkg/publish.nim b/src/nimblepkg/publish.nim index a892503..5b123a3 100644 --- a/src/nimblepkg/publish.nim +++ b/src/nimblepkg/publish.nim @@ -15,7 +15,7 @@ type token: string ## base64 encoding of user:pw const - ApiKeyFile = "api_token" + ApiKeyFile = "github_api_token" proc userAborted() = raise newException(NimbleError, "User aborted the process.")