Skip to content
  • Sponsor facebook/create-react-app

  • Notifications You must be signed in to change notification settings
  • Fork 27k

Commit e6ddfb0

Browse files
ro-savagegaearon
authored andcommittedMay 29, 2017
Fix kill command in e2e-kitchensink.sh cleanup (#2397)
1 parent 3f34238 commit e6ddfb0

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)
Please sign in to comment.