From 45e070312123f18d2b8471da1520f842d3363581 Mon Sep 17 00:00:00 2001 From: Alex Guerra Date: Thu, 18 Jul 2019 15:46:04 -0500 Subject: [PATCH] Fix CI issue on windows (#7385) * Attempt at fixing CI issue on windows * Try to debug why verdaccio isn't in the ps output * Just remove the kill call alltogether --- tasks/local-registry.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/tasks/local-registry.sh b/tasks/local-registry.sh index 715380a8a85..f19a73c4ca3 100644 --- a/tasks/local-registry.sh +++ b/tasks/local-registry.sh @@ -25,9 +25,6 @@ function stopLocalRegistry { # Restore the original NPM and Yarn registry URLs and stop Verdaccio npm set registry "$original_npm_registry_url" yarn config set registry "$original_yarn_registry_url" - - # Kill Verdaccio process - ps -ef | grep 'verdaccio' | grep -v grep | awk '{print $2}' | xargs kill -9 } function publishToLocalRegistry {