Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kelset committed Sep 15, 2022
1 parent 78097ac commit fe916e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/test-e2e-local-clean.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,11 @@ exec('rm -rf /tmp/RNTestProject');

// final clean up
console.info('\n** Final git level wipe **\n');
exec('git clean -fdx');
// clean unstaged changes from git
exec('git checkout -- .');
// remove all the untracked files
exec('git clean -fdx');


console.info(
'\n** Clean up process completed\nPlease remember to run yarn install if you are planning to test again\n',
Expand Down

0 comments on commit fe916e0

Please sign in to comment.