Skip to content
This repository was archived by the owner on Jan 26, 2019. It is now read-only.

Commit e447c79

Browse files
ro-savagewmonk
authored andcommitted
Fix kill command in e2e-kitchensink.sh cleanup (#2397)
1 parent 55c2cc6 commit e447c79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/e2e-kitchensink.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ temp_module_path=`mktemp -d 2>/dev/null || mktemp -d -t 'temp_module_path'`
2222

2323
function cleanup {
2424
echo 'Cleaning up.'
25-
ps -ef | grep 'react-scripts' | grep -v grep | awk '{print $2}' | xargs kill -s 9
25+
ps -ef | grep 'react-scripts' | grep -v grep | awk '{print $2}' | xargs kill -9
2626
cd "$root_path"
2727
# TODO: fix "Device or resource busy" and remove ``|| $CI`
2828
rm -rf "$temp_cli_path" "$temp_app_path" "$temp_module_path" || $CI

0 commit comments

Comments
 (0)