We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c609ed commit 7d954e6Copy full SHA for 7d954e6
tasks/e2e-kitchensink.sh
@@ -21,8 +21,10 @@ temp_app_path=`mktemp -d 2>/dev/null || mktemp -d -t 'temp_app_path'`
21
22
function cleanup {
23
echo 'Cleaning up.'
24
+ ps -ef | grep 'react-scripts' | grep -v grep | awk '{print $2}' | xargs kill -s 9
25
cd $root_path
- rm -rf $temp_cli_path $temp_app_path
26
+ # TODO: fix "Device or resource busy" and remove ``|| $CI`
27
+ rm -rf $temp_cli_path $temp_app_path || $CI
28
}
29
30
# Error messages are redirected to stderr
0 commit comments