From b1ccde13bd9bb26e263866253e1bce33a8031b73 Mon Sep 17 00:00:00 2001 From: CommonLoon102 Date: Sat, 25 Jan 2020 01:55:46 +0100 Subject: [PATCH] fix supervisor path --- WebInterface/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebInterface/Startup.cs b/WebInterface/Startup.cs index 4da1898..d8a0cc3 100644 --- a/WebInterface/Startup.cs +++ b/WebInterface/Startup.cs @@ -28,7 +28,7 @@ namespace WebInterface string supervisorPath = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), supervisor); if (!File.Exists(supervisorPath)) throw new Exception($"Couldn't find {supervisor} at {supervisorPath}"); - Process.Start(supervisor); + Process.Start(supervisorPath); } public IConfiguration Configuration { get; }