Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMackinnon Buck <mackinnon.buck@gmail.com>2022-05-24 23:22:43 +0300
committerMackinnon Buck <mackinnon.buck@gmail.com>2022-05-24 23:22:43 +0300
commit1f65847a69808e17c6d1c6a682f846b3bc8250b7 (patch)
treec985d3fe1f808f242decf180e53823b889f921ab
parenta54b70e80ff761086f4e5f588775816eb02bdf23 (diff)
Update SpaProxyLaunchManager.csmbuck/backport-fix-spa-proxy-bash-script
-rw-r--r--src/Middleware/Spa/SpaProxy/src/SpaProxyLaunchManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Middleware/Spa/SpaProxy/src/SpaProxyLaunchManager.cs b/src/Middleware/Spa/SpaProxy/src/SpaProxyLaunchManager.cs
index 3c0bfe7afd..63c6fd1c22 100644
--- a/src/Middleware/Spa/SpaProxy/src/SpaProxyLaunchManager.cs
+++ b/src/Middleware/Spa/SpaProxy/src/SpaProxyLaunchManager.cs
@@ -251,7 +251,7 @@ catch
{
var fileName = Guid.NewGuid().ToString("N") + ".sh";
var scriptPath = Path.Combine(AppContext.BaseDirectory, fileName);
- var stopScript = @$"function list_child_processes(){{
+ var stopScript = @$"function list_child_processes () {{
local ppid=$1;
local current_children=$(pgrep -P $ppid);
local local_child;