Skip to content

Commit

Permalink
Merge pull request #3 from alanhamlett/master
Browse files Browse the repository at this point in the history
Fix wakatime-cli location after GitHub repo renamed
  • Loading branch information
salaros authored Nov 21, 2021
2 parents 7476ef8 + 60fbd46 commit f5ae7f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/WakaTime/WakaTimeCli.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ static WakaTimeCli()
{
ConfigDir = GetAppDataDirectory();
CliFolder = string.Join(Path.DirectorySeparatorChar.ToString(), new[]{
"wakatime-master",
"legacy-python-cli-master",
"wakatime",
"cli.py"
});
Expand All @@ -33,7 +33,7 @@ public static void Initialize()
{
try
{
var cliFolder = Path.Combine(ConfigDir, "wakatime-master");
var cliFolder = Path.Combine(ConfigDir, "legacy-python-cli-master");
if (Directory.Exists(cliFolder))
Directory.Delete(cliFolder, true);
}
Expand Down

0 comments on commit f5ae7f2

Please sign in to comment.