Skip to content

Commit caca453

Browse files
ro-savageromaindso
authored andcommittedJul 10, 2017
Fix kill command in e2e-kitchensink.sh cleanup (facebook#2397)
1 parent 8bb7441 commit caca453

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎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)
Please sign in to comment.