Skip to content

Commit

Permalink
Fix loading of redis config
Browse files Browse the repository at this point in the history
  • Loading branch information
mtaku3 committed Jul 15, 2021
1 parent d9574d9 commit d3c656c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ private void InitializeProcs()
DownloadRedisCli();

if (requiredComponents.Contains("postgres")) AddProc("postgres", CreateProcessFromArchive("postgres.zip", "postgres\\bin\\pg_ctl.exe", "start -D data", "postgres\\")); // postgres
if (requiredComponents.Contains("redis")) AddProc("redis", CreateProcessFromArchive("redis.zip", "redis\\redis-server.exe")); // redis
if (requiredComponents.Contains("redis")) AddProc("redis", CreateProcessFromArchive("redis.zip", "redis\\redis-server.exe", "redis.windows.conf", "redis\\")); // redis
if (requiredComponents.Contains("galactus")) AddProc("galactus", CreateProcessFromExecutable("galactus.exe")); // galactus
if (requiredComponents.Contains("wingman")) AddProc("wingman", CreateProcessFromExecutable("wingman.exe")); // wingman
if (requiredComponents.Contains("automuteus")) AddProc("automuteus", CreateProcessFromExecutable("automuteus.exe")); // automuteus
Expand Down

0 comments on commit d3c656c

Please sign in to comment.